Skip to content

Instantly share code, notes, and snippets.

@ezhlobo
Last active August 29, 2015 14:19
Show Gist options
  • Save ezhlobo/0dc0415e37d2ab66b963 to your computer and use it in GitHub Desktop.
Save ezhlobo/0dc0415e37d2ab66b963 to your computer and use it in GitHub Desktop.
Debounced resize events
/*
smartresize(function() {
// Handle the resize event here
});
// Executing after loading
smartresize(function() {
// Handle the resize event here
})();
*/
window.smartresize = function(callback, timer) {
window.addEventListener('resize', function() {
clearTimeout(timer);
timer = setTimeout(callback, timer);
}, false);
return callback;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment