I\'m getting this error in Google Chrome developer tools:
jquery-2.0.2.min.map not found
I found a way to get rid of it by remov
As it is announced in jQuery 1.11.0/2.1.0 Beta 2 Released
the source map comment will be removed so the issue will not appear in newer versions of jQuery
.
Anyway, if you need to use a source map, it still be available:
We’ll still be generating and distributing sourcemaps, but you will need to add the appropriate sourcemap comment at the end of the minified file if the browser does not support manually associating map files (currently, none do). If you generate your own jQuery file using the custom build process, the sourcemap comment will be present in the minified file and the map is generated; you can either leave it in and use sourcemaps or edit it out and ignore the map file entirely.
Here you find more details about the changes.