Skip to content

Instantly share code, notes, and snippets.

@kmaida
Last active December 25, 2015 05:49
Show Gist options
  • Save kmaida/6927580 to your computer and use it in GitHub Desktop.
Save kmaida/6927580 to your computer and use it in GitHub Desktop.
jQuery resize() debounce
function resizedFn(){
// Haven't resized in 200ms!
// Run this code
}
var debounceResize;
$(window).resize(function(){
clearTimeout(debounceResize);
debounceResize = setTimeout(resizedFn, 200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment