1
GET http://domain.com/assets/js/jquery-1.10.2.min.map 500 (Internal Server Error) 

Any idea what's wrong with this Error? I cant seem to see any error on the log files in /var/log/error

I have these file loaded

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="{{ asset('assets/js/bootstrap.min.js')}}"></script>
<script src="{{ asset('assets/js/jquery.js')}}"></script>
CodeGuru
  • 3,645
  • 14
  • 55
  • 99
  • Remove this line in your jqeury.js file would remove the Error @ sourceMappingURL=jquery-1.10.2.min.map Question is if i have jquery-1.10.2.min.map, how can i use it? – CodeGuru Oct 06 '13 at 12:35
  • Look in Apache's error log. – Pekka Dec 26 '13 at 14:59

1 Answers1

1

You can download map from jquery website http://jquery.com/download/ (here is a link to 1.10.2 map http://code.jquery.com/jquery-1.10.2.min.map). Place it in the same directory where you keep minified version of jQuery.

Here you can read more about source maps http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/

ofca
  • 661
  • 5
  • 10