Edmilson lopes Posted December 7, 2011 Report Share Posted December 7, 2011 Bom diaé o seguinte pessoal, estou tentado fazer uma pagina chamar outra após a primeira ser fechada, ela funciona no windows explorer , mas no firefox e chrome não, alguém pode me ajudar ?código da primeira página (teste.html)<html><head><script>function teste(){ var x = window.open('teste2.html');}</script></head><body onunload="teste();"> <p>PAGINA 1</p></body ></html>código da segunda página (teste2.html)<html><head></head><body> <p> PAGINA 2</p></body></html> Quote Link to comment Share on other sites More sharing options...
Question
Edmilson lopes
Bom dia
é o seguinte pessoal, estou tentado fazer uma pagina chamar outra após a primeira ser fechada, ela funciona no windows explorer , mas no firefox e chrome não, alguém pode me ajudar ?
código da primeira página (teste.html)
<html>
<head>
<script>
function teste()
{
var x = window.open('teste2.html');
}
</script>
</head>
<body onunload="teste();">
<p>PAGINA 1</p>
</body >
</html>
código da segunda página (teste2.html)
<html>
<head></head>
<body>
<p> PAGINA 2</p>
</body>
</html>
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.