Skip to content

Instantly share code, notes, and snippets.

@dustintheweb
Last active August 29, 2015 14:01
Show Gist options
  • Save dustintheweb/6bd91ecdb5c2b56331e8 to your computer and use it in GitHub Desktop.
Save dustintheweb/6bd91ecdb5c2b56331e8 to your computer and use it in GitHub Desktop.
Self Clearing setTimeout
var timer = setTimeout(function() {
// code stuffs
clearTimeout(timer);
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment