Guest User

Untitled

a guest
Dec 7th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.26 KB | None | 0 0
  1. setInterval(function() {
  2.   $.ajax({
  3.       type: "GET",
  4.       url: "includes/checksession.php",
  5.       success: function(msg){
  6.           if(msg == "You have timed out. Clock OK to continue.") {
  7.                 alert(msg);
  8.                 window.location.reload()
  9.           }
  10.         }
  11. }, 2000);
  12.   });
Add Comment
Please, Sign In to add comment