Skip to content

Instantly share code, notes, and snippets.

@anvk
Last active October 20, 2015 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anvk/496624199e4f04a3f080 to your computer and use it in GitHub Desktop.
Save anvk/496624199e4f04a3f080 to your computer and use it in GitHub Desktop.
Execute function not often than wait time period
/*
* func - function you want to debounce
* wait - time period in milliseconds
* immediate - boolean if you want to execute function right away
*/
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};
// Ensure that there is one function call every second
var optimizedFunc = debounce(function() {
// my complex logix here
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment