PDA

View Full Version : auto Page changer


Gen-Chan
05-02-2003, 12:15 AM
I'm searching for an script they change form page 1 to page 2 after a specified time. I mean it so

You go on page 1 (page1.html)
after 5 sec.
the explorer loading in the same window page 2 (page2.html).

requestcode
05-02-2003, 12:42 AM
Try this in your head section:
<SCRIPT LANGUAGE="JavaScript">
setTimeout('location.href="page2.html"',5000)
</SCRIPT>

After 5000 milliseconds (5 seconds) the page will redirect to page2.html.

Gen-Chan
05-02-2003, 01:18 AM
Thanks