Countdown timer always use on 4share,rapidshare,and etc. Ok, now how to create simple script for timer countdown . We use javascript for set time .
Here's how to make it :
<html>
<head>
<title>Count Down Download with JavaScript</title>
<script type="text/javascript">
var counter = 10;
function countDown()
{
if(counter>=0)
{
document.getElementById("timer").innerHTML = counter;
}
else
{
download();
return;
}
counter -= 1;
var counter2 = setTimeout("countDown()",1000);
return;
}
function download()
{
document.getElementById("link").innerHTML = "<a href='http://namasitus/filedownload'>Download</a>";
}
</script>
</head>
<body onload="countDown();">
<h1>Download</h1><br />
<h3>Link download show at<span id="timer"></span> second.</h3>
<span id="link"></span>
</body>
</html>
Well , you can download and show demo just click here
Countdown timer link download
Reviewed by sarindi
on
2:47 PM
Rating:
Reviewed by sarindi
on
2:47 PM
Rating:


how to add button css code this code
ReplyDeletecan u send me code
how to add css download button this code
ReplyDeletecan u send me code