Guest User

Untitled

a guest
Jun 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var id = setTimeout(timer, 5000);
  2. function timer() {
  3. alert(1);
  4. $("#qty-popup").show();
  5. setInterval(function () {
  6. $("#qty-popup").hide();
  7. }, 5000);
  8. clearInterval(id);
  9. }
Add Comment
Please, Sign In to add comment