[jQuery] Re: window height

2008-10-19 Thread kevind
thanks !! i'm not an expert on script - but, you've obviously been at it for some time - now i can stop pulling my hair out :) kd On Oct 18, 11:16 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > The problem is the document.write. You can't do that in a .ready() or > .load() or any time except w

[jQuery] Re: window height

2008-10-18 Thread Michael Geary
The problem is the document.write. You can't do that in a .ready() or .load() or any time except when the document is first loading. (Some browsers allow it anyway; most don't.) $(window).height() should be valid while the document is loading. If you make your document.write calls directly inline