tags:

views:

984

answers:

2

i got 'JQuery' is undefined error while browsing the page in IE 6 but it works with all

browsers (including IE 7 ).can anyone help me.

+5  A: 

Taking in consideration that you actually posted a link to an internal IP Address, I can give you a quick answer (hopping that you have internet connection on the page you are having this problems)

change the script call to:

<script 
     type="text/javascript"          
     src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;
</script>
balexandre
Edited your post to remove the self closing since not all browsers support that notation
Andreas Grech
thanks... good idea :)
balexandre
A: 

Obviously You have to change this also:

<script type="text/javascript" src="http://192.168.1.100/jquery.cycle.all.js"&gt;&lt;/script&gt;
<script language="javascript" src="http://192.168.1.100/carousel192.js"&gt;&lt;/script&gt;

into this (also copy this two files into folder named js in the same directory where the html file is):

<script type="text/javascript" src="js/jquery.cycle.all.js"></script>
<script language="javascript" src="js/carousel192.js"></script>

And do not use Your local IP addresses!

Dejw