|
Posted by Andrι Gillibert on 11/17/07 09:48
CJS wrote:
> Simply what I want to accomplish is the popup to come up *first* befoer
> any other page elements load. It is complicated as to why, and other
> factors, but that is what needs to happen.
Something very simple that works in most browsers:
Put a script at the top of your document, in the HEAD.
It will typically be executed as soon as the browser parses it, and before
the document is entirely loaded.
>
> The onload tag seems to open happen after the page has finished loading
> completely, which is odd.
No, it isn't odd. The onload function is EXACTLY for that. It ensures that
the DOM is complete.
--
If you've a question that doesn't belong to Usenet, contact me at
<tabkanDELETETHISnaz@yahoDELETETHATo.fr>
[Back to original message]
|