Guest User

Untitled

a guest
May 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function countdown(item) {
  2. var num = item.html(),
  3. i = 0,
  4. step = 5000 / num,
  5. int = setInterval(function () {
  6. if (i <= num) {
  7. item.html(i);
  8. }
  9. else {
  10. clearInterval(int);
  11. }
  12. i++;
  13. }, step);
  14. }
Add Comment
Please, Sign In to add comment