Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Onload event

  • 3 respostas
  • 3 têm este problema
  • 36 visualizações
  • Última resposta de 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>

Alterado por cor-el em

Todas as respostas (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.