Skip to content

Instantly share code, notes, and snippets.

@DustinHigginbotham
Created August 27, 2013 21:21
Show Gist options
  • Save DustinHigginbotham/6359327 to your computer and use it in GitHub Desktop.
Save DustinHigginbotham/6359327 to your computer and use it in GitHub Desktop.
/**
* Usage:
*
* $.debounce(function() { alert('heyo'); }, 1000);
* $.debounce(function() { alert('heyo'); }, 1000);
* $.debounce(function() { alert('heyo'); }, 1000);
*/
jQuery.extend({
debounceInt: null,
debounce: function(fn, timeout) {
clearTimeout(jQuery.debounceInt);
jQuery.debounceInt = setTimeout(fn, timeout);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment