I got web page that adds a jQuery
min from a CDN
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
The problem is that, when I check the Sources tab in DevTools
, I see the jQuery
minified, and also the full version. Like this
I checked in the HTML code, and I'm not adding the non-minified version manually
You can see it here
and for the last, I searched on my project for "Jquery" to see if I could find any missed call, and I couldn't find anything (this picture is too big, because I used jQuery('#foo')
instead of $('#foo')
but trust me on this one)
So the question is: Why I'm getting added the non-minified version of jQuery library ? Is the jQueryUI loading it ? I tried to load the minified version of jQuery first to see if jQueryUI avoids the try to loading, but the issue still happens.
Thanks in Advance