South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
<meta http-equiv="refresh" content="10;url=http://website-to-redirect-to-here/">
<html>
<head>
</head>
<body>
<div id="countdown"></div>
<script>
function countdown(secs)
{
if(secs>0)
{
document.getElementById("countdown").innerHTML = secs;
setTimeout(function(){countdown(secs-1)}, 1000);
}
else
{
window.location = "http://www.google.com/";
}
}
countdown(10);
</script>
<body>
</body>
</html>