Guest User

Untitled

a guest
Feb 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var _Seconds = $('.timer').text(),
  2. int;
  3. int = setInterval(function() {
  4. if (_Seconds > 0) {
  5. _Seconds++;
  6. $('.timer').text(_Seconds);
  7. }
  8. }, 1000);
  9.  
  10. <span class = "timer">23 000 000+</span> `
Add Comment
Please, Sign In to add comment