Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery min v1.10.1 error reading jquery-1.10.1.min.map not found [duplicate]

Tags:

jquery

I use jquery-1.10.1.min.js, downloaded from http://jquery.com/download/, but when I load my webpage it gives the error .../jquery-1.10.1.min.map 404 (Not Found).

What is wrong? Is there any additional file that needs to be included in the project? Please advise.

like image 347
hima Avatar asked Sep 23 '13 09:09

hima


1 Answers

You can use the map file for debugging purposes in the console of any modern browser and don't need to include the unminified version of jquery.

If you don't need it, simply remove sourceMappingURL in the jquery file, otherwise you can download the map file on jquery.com.

like image 163
nietonfir Avatar answered Oct 23 '22 23:10

nietonfir