NameSilo

Countdown timer

Spaceship Spaceship
Watch

SiKing

Registered MemberEstablished Member
Impact
6
Hey. I'm looking for a countdown timer which does the following:

- Counts down from 20 seconds.
- When it's done, shows a link.
- Count down restarts when link is clicked.

Figure it will have to be JavaScript but oh well. Thanks
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Code:
<div id="dl">
If you're seeing this message, you need to enable JavaScript.
</div>
<script language="Javascript">
xtimer=20;
function countdown() 
{
 if ((0 <= 100) || (0 > 0))
 {
  xtimer--;
  if(xtimer == 0)
  {
   document.getElementById("dl").innerHTML = '<a onclick="xtimer=20;countdown();" href="http://www.google.com">Your Link</a>';
  }
  if(xtimer > 0)
  {
   document.getElementById("dl").innerHTML = 'Please wait <b>'+xtimer+'</b> seconds...';
   setTimeout('countdown()',1000);
  }
 }
}
countdown();
</script>
 
0
•••
Awesome, thanks Jim
 
0
•••
Hmm dosnt seem to work for me. i just get a blank page.
 
0
•••
0
•••
Dynadot — .com Registration $8.99Dynadot — .com Registration $8.99

We're social

Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back