Advertisement
dakrizzz

[JS] CountDown Timer

May 14th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var myVar = setInterval(function(){ setTimer() }, 1000);
  2.  
  3. function setTimer() {
  4.    
  5.     setInterval(function(){ stopTimer() }, 10000);
  6. }
  7.  
  8. function stopTimer() {
  9.    
  10.     /*Instrucciones a ejecutar antes de que acabe el tiempo*/
  11.     clearInterval(myVar);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement