Advertisement
HeavenHU

JS Countdown

Dec 20th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.38 KB | None | 0 0
  1. Code:
  2.  
  3. <script type="text/javascript">
  4. function countdown() {
  5.     var counter = document.getElementById('yourID'); //replace with your ID
  6.     if (parseInt(counter.innerHTML)==1) {
  7.         location.href = 'index.php';
  8.     }
  9.     counter.innerHTML = parseInt(counter.innerHTML)-1;
  10. }
  11. setInterval(function(){ countdown(); },1000);
  12. </script>
  13.  
  14.  
  15. Use:
  16.  
  17. <font id="yourID">10</font>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement