Profile image for HotMorris Dazure.net hotmorris
JQuery Count Down Timer
Language
JavaScript
Tags
JQuery
Favorited By
Profile image for Patrick Westerfeld Profile image for Jeff G

JQuery Count Down Timer

1 function counter(time,url){ 2 var interval = setInterval(function(){ 3 $('#counter').text(time); 4 time = time -1; 5 6 if(time == 0){ 7 clearInterval(interval ); 8 window.location = url; 9 } 10 }, 1000); 11 } 12 13 $(document).ready(function(){ 14 counter(10, 'http://google.com.hk'); 15 });

Comments