> > From: kevwil > > > > We are using jQuery in an ajax demo. We have the whole > > thing written, and it works in Firefox, Opera, and Safari. > > IE gives us a blank page. > > We have tried to debug the issue, but the jquery.js script > > won't load. If we do not load the jquery.js script, the page > > will load successfully. > > > > <script type="text/javascript" charset="utf-8" src="jquery.js"/>
> From: Michael Geary > > That's not a valid script tag. You need to use: > > <script type="text/javascript" src="jquery.js"></script> Just another note - the invalid tag didn't load for me in Firefox 2 either - I wonder why it worked for you? It did load in Opera 9 and Safari 3. Anyway, fix that and see if it takes care of the problem. If not, validate your page to see if anything else is amiss. -Mike