Skip to content

Instantly share code, notes, and snippets.

@elusiveunit
Last active December 17, 2015 09:09
Show Gist options
  • Save elusiveunit/5585641 to your computer and use it in GitHub Desktop.
Save elusiveunit/5585641 to your computer and use it in GitHub Desktop.
If more debouncing (or throttling) is needed, there is this plugin: https://github.com/cowboy/jquery-throttle-debounce
var resized = null;
$(window).resize(function() {
clearTimeout(resized);
resized = setTimeout(function() {
// Do stuff
}, 250);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment