Loading jquery in IE8?

internet-explorer-8, jquery

Solution

Since the 2.x versions of jQuery do not support older versions of IE, try using an older version of jQuery...

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

Problem

I get the error: ``` jquery is undefined. ``` I have this in my head: ``` <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> ``` I've checked this thread and tried a number of solution suggested but none work. jQuery issue in Internet Explorer 8

Original source

Related problems