Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Onload event

  • 3 replies
  • 3 have this problem
  • 36 views
  • Last reply by finitarry

more options

There is an onload event that triggers when all page content is loaded. However, this event does not trigger when site is not avaible (timeout, server not found etc). Is there any way to force post this event trigger in FF - without having access to the site source ?

Small example:

<html>
<body>
<div id="loading">
Page Loading Please Wait One Moment...
</div>
<iframe src="http://google.com" onload="javascript:document.getElementById('loading').innerHTML = 'Page Loaded';">
</iframe>
</body>
</html>

This will trigger the onload event, however, this will not:

<html>
<body>
<div id="loading">
Page Loading Please Wait One Moment...
</div>
<iframe src="http://google.abc" onload="javascript:document.getElementById('loading').innerHTML = 'Page Loaded';">
</iframe>
</body>
</html>
There is an onload event that triggers when all page content is loaded. However, this event does not trigger when site is not avaible (timeout, server not found etc). Is there any way to force post this event trigger in FF - without having access to the site source ? Small example: <br /> <pre><nowiki><html> <body> <div id="loading"> Page Loading Please Wait One Moment... </div> <iframe src="http://google.com" onload="javascript:document.getElementById('loading').innerHTML = 'Page Loaded';"> </iframe> </body> </html> </nowiki></pre> This will trigger the onload event, however, this will not: <br /> <pre><nowiki><html> <body> <div id="loading"> Page Loading Please Wait One Moment... </div> <iframe src="http://google.abc" onload="javascript:document.getElementById('loading').innerHTML = 'Page Loaded';"> </iframe> </body> </html></nowiki></pre>

Modified by cor-el

All Replies (3)

more options

Onload is a javascript command. Onload events happen when a page is loaded and the code is being rendered. Of course, if the page did not load, the onload will not happen.

more options

Yes, that's pretty much same what Ive written. Still - my question is unanswered.

more options

You normally cannot have a javascript event happening without loading and using the web page code that tells the browser to either follow a script command if it is an inline script or to load and execute an external javascript file. You can put javascript code directly into the address bar, and in fact that is what bookmarklets do, but that is limited to one line.