Simple Javascript CountDown timer and Page Redirect in HTML
<html> <title>SiteName (test)</title> <head> <script type="text/javascript"> var ss = 10; function countdown() { ss = ss-1; if (ss<0) { window.location="http://www.sitename.com"; } else { document.getElementById("countdown").innerHTML=ss; window.setTimeout("countdown()", 1000); } } </script> </head> <body onload="countdown()"> <center> <table width="100%" height="600px" style="text-align:center;"> <tr><td valign="center"><h3>Redirecting to <a href="http://www.sitename.com">www.sitename.com</a> (<span id="countdown" style="color:green;">10</span>)</h3></td></tr> </table> </center> </body> </html>
Posted on August 30, 2011, in Programming & Development and tagged code, count, countdown, countdown timer, html, javascript, js, jscript, timer. Bookmark the permalink. 4 Comments.
Thank you…..
Thanks mate! Works like a charm.
Cheers!
– Ned
How do you add seconds to it?
var ss = 10; <– this value represents 10 seconds.