kippie
Technical User
- Nov 8, 2001
- 158
I would like to redirect a visitor of a page1 automatically after 1 second to a page2. But then I would like to have page1 also open together with page2. Is this possible?
Kippie
Kippie
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTM>
<HEAD>
<SCRIPT>
function delayedWindow()
{
window.open("[URL unfurl="true"]http://www.echoecho.com");[/URL]
}
</SCRIPT>
</HEAD>
<BODY onLoad="window.setTimeout('delayedWindow()',100)">
TEST
</BODY>
</HTML>