timed redirect

admin

Administrator
Staff member
after so many seconds the page will reload to another website... got the script?<!--content-->Put this in the <head> section:<br />
<HEAD><br />
<SCRIPT LANGUAGE="JavaScript"><br />
<br />
<!-- Begin<br />
redirTime = "15000";<br />
redirURL = "http://whatever.com";<br />
function redirTimer() { self.setTimeout("self.location.href = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/redirURL;">http://www.webdeveloper.com/forum/archi ... /redirURL;</a><!-- m -->",redirTime); }<br />
// End --><br />
</script><br />
<br />
<br />
put this in the <body> section<br />
<BODY onLoad="redirTimer()"><br />
<br />
I think:D<!--content--><head><br />
<meta http-equiv="refresh" content="10; url=redirect_to_page.html"><br />
</head><br />
<br />
<br />
works for me (set for 10 sec, change the number to your liking).<!--content-->
 
Back
Top