Created
March 28, 2013 12:47
-
-
Save AverageMarcus/5262845 to your computer and use it in GitHub Desktop.
JavaScript polling every 5 seconds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function pollForUpdate(){ | |
setTimeout(function(){ | |
$.post('/some/url/', function(data){ | |
//process data | |
pollForUpdated(); | |
}); | |
}, 5000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment