Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var instanse = false;
  2.  
  3. function Log () {
  4. this.update = updateLog;
  5. }
  6. function updateLog(){
  7. if(!instanse){
  8. instanse = true;
  9. $.ajax({
  10. type: "GET",
  11. url: "log.txt",
  12. success: function(data){
  13. $('#log').text(data);
  14. instanse = false;
  15. }
  16. });
  17. } else {
  18. setTimeout(updateLog, 1000);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement