<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>
Ronnie Diaz Avatar

Published by

4 responses to “Simple Javascript CountDown timer and Page Redirect in HTML”

  1. Kasun Avatar
    Kasun

    Thank you…..

  2. NED Avatar

    Thanks mate! Works like a charm.

    Cheers!
    – Ned

  3. Ellis Avatar
    Ellis

    How do you add seconds to it?

    1. Ronnie Diaz Avatar

      var ss = 10; <– this value represents 10 seconds.

Leave a reply to Ronnie Diaz Cancel reply