> I'm using jquery-1.2.6 for my webpage, and realized that in IE, > nothing on the page would be displayed. > I deleted most stuff and realized even the following code won't work: > > <html> > <head> > <script type="text/javascript" src="http:// > jqueryjs.googlecode.com/files/jquery-1.2.js"/> > </head> > <body> > blablabla > </body></html>
You can't use self-closing script tags. Use open and close tags for the script element: <script type="text/javascript" src="http://jqueryjs.googlecode.com/ files/jquery-1.2.js"></script>