Skip to content

Instantly share code, notes, and snippets.

@AndreKelling
Last active July 17, 2018 09:06
Show Gist options
  • Save AndreKelling/2598a2fa04b204482d9652a882702cb1 to your computer and use it in GitHub Desktop.
Save AndreKelling/2598a2fa04b204482d9652a882702cb1 to your computer and use it in GitHub Desktop.
On Resize
var resizeTimer;
$(window).on('resize', function(e) {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
console.log('i had resized')
}, 250);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment