It doesn't work in Firefox either.

I think the problem ist that you used the script tag without a closing
tag. Although theoretically valid XHTML that isn't supported well in
browsers. The following

<script type="text/javascript" src="scripts/default.js" />

is seen as

<script type="text/javascript" src="scripts/default.js">

by the browsers - especially because you're serving XHTML as text/
html, thus all your content is hidden in the script. Use:

<script type="text/javascript" src="scripts/default.js"></script>


--Klaus


On Feb 24, 10:17 pm, George <[EMAIL PROTECTED]> wrote:
> Hi, I'e just started using jquery and have to say I like it.  One big
> problem though, my site (http://www.georgemauer.net) doesn't show up
> when I try to go to it in internet explorer 7.  Nothing, its blank,
> just shows up as the background color.  Strangely enough, all the html
> in view source is still there.  The page works fine in firefox and
> opera (not sure about safari, ie6).  But if I remove the reference to
> the jquery library then it works in IE too (though obviousy without
> the jquery functionality).
> I assume this is something really simple, can one of you gurus take a
> quick look and tell me what is going on?
>
> Thanks a lot,
> Toga

Reply via email to