4

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

Community
  • 1
  • 1
panthro
  • 22,779
  • 66
  • 183
  • 324

1 Answers1

6

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>
Charlie74
  • 2,883
  • 15
  • 23