Skip to content

Instantly share code, notes, and snippets.

@infn8
Created September 10, 2014 19:48
Show Gist options
  • Save infn8/130b715f55392d042c75 to your computer and use it in GitHub Desktop.
Save infn8/130b715f55392d042c75 to your computer and use it in GitHub Desktop.
Clear All JS Timers
tempID = window.setTimeout(function() {}, 0);
while (tempID--) {
window.clearTimeout(tempID); // will do nothing if no timeout with tempID is present
}
tempID = window.setInterval(function() {}, 0);
while (tempID--) {
window.clearInterval(tempID); // will do nothing if no interval with tempID is present
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment