Count down and redirect the page

This article shows you how to create redirect particular page after certain timings (seconds). This was one of the very useful and also very simple script because lot of websites they are using the redirect option for some other reasons.

For that count down and redirect script is very useful. This was done by simple javascript. See the below diagram shows you how to redirect the page after the 5 seconds. Below example have the demos and codes.

You can customize the below code and you can change timings to edit the below code:
var countdownfrom=5

change the url to edit the below code:

var targetURL="http://www.sanwebcorner.com/"

Code:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CountDown and Redirect the page</title>
</head>
<body>
<center>
<h1><b>The Page Redirected to sanwebcorner</b></h1><br><br>
<form name="redirect">
<input type="text" size="3" style="height:30px;" name="sec">
</form>
seconds</b></font>
</center>
<script type="text/javascript">
var targetURL="http://www.sanwebcorner.com/"
var countdownfrom=5
var currentsecond=document.redirect.sec.value=countdownfrom+1
function countredirect()
{
if (currentsecond!=1)
{
currentsecond-=1
document.redirect.sec.value=currentsecond
}
else
{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}
countredirect()
</script>
</body>
</html>



I hope this is post very useful to you!


Post a Comment

0 Comments