tags:

views:

346

answers:

2

my jquery code not run with IE6 but runs all others including IE7. It errors

"JQuery is undefined" . my code is here

A: 

It works fine for me in IE6. Something to do with your security settings maybe? Also try emptying your cache.

Greg
+2  A: 

Try changing:

<script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;

In to:

<script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;

You should also check the charset.

benvds