I'm including jQuery via this Google CDN:
//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
The only reason I'm using jQuery is because of Bootstrap, which I'm loading from this CDN:
//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js
The problem is that whenever my page loads, the slowest file to come is jquery.min.map
. which returns a 304 GET and takes over 50ms to load. I understand Javascript maps are to debug obfuscated/minified code? Not sure why I'd need this in a production application.
Thanks!