Guest User

Untitled

a guest
Oct 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. var time = Date.now();
  2. setInterval(function(){
  3. var now = Date.now();
  4. if(now - time > 5000)
  5. alert('pageshow(fake)');
  6. time = now;
  7. }, 1000);
Add Comment
Please, Sign In to add comment