"Alex" <a.********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I need to detect if page loaded or not with a script (in a child
frame). The IE has a special readyState function, is there anything
similar for Mozila browsers?
Is there a work around?
Thank you.
Yeah - just use the onload() event on that frame to tell you when the page
is loaded:
<iframe id="frm" src="http://www.google.com/" onload="isLoaded();"></iframe>
that'll tell you when the page has loaded.