Guest User

Untitled

a guest
May 10th, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.   var a = new Date;
  3.   a.setHours(18, 0);
  4.   var b = setInterval(function () {
  5.     if (Date.now() > a) {
  6.       clearInterval(b);
  7.       document.location.reload();
  8.     }
  9.   }, 1000);
  10. })();
Advertisement
Add Comment
Please, Sign In to add comment