Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.Net MVC JQuery is undefined in IE8 but ok in Chrome

I have a web application which works perfectly in Chrome, but in IE8, I get undefined errors for my script files: ss1 The scripts are all loaded in the correct order (View -> Source): ss2 I'm not sure where to start diagnosing this - any ideas? (I thought IE8 was fairly modern).

Thank you,

Mark

like image 906
Mark Avatar asked Oct 22 '22 08:10

Mark


1 Answers

To provide an answer (since this was still unanswered), from the jQuery 2.0 documentation:

As promised, this version leaves behind the older Internet Explorer 6, 7, and 8 browsers.

If you wish to use jQuery in IE8 or less, you'll have to use jQuery 1.9.

like image 96
JasCav Avatar answered Oct 24 '22 11:10

JasCav