Click to See Complete Forum and Search --> : timed redirect


contact
12-05-2003, 03:19 PM
after so many seconds the page will reload to another website... got the script?

iniquity101
12-05-2003, 03:24 PM
Put this in the <head> section:
<HEAD>
<SCRIPT LANGUAGE="JavaScript">

<!-- Begin
redirTime = "15000";
redirURL = "http://whatever.com";
function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
// End -->
</script>


put this in the <body> section
<BODY onLoad="redirTimer()">

I think:D

Daria
12-05-2003, 03:26 PM
<head>
<meta http-equiv="refresh" content="10; url=redirect_to_page.html">
</head>


works for me (set for 10 sec, change the number to your liking).