Skip to content

Instantly share code, notes, and snippets.

@Nikolasgrizli
Created December 5, 2018 19:45
Show Gist options
  • Save Nikolasgrizli/c3b44de974166d619659facdc7389ff2 to your computer and use it in GitHub Desktop.
Save Nikolasgrizli/c3b44de974166d619659facdc7389ff2 to your computer and use it in GitHub Desktop.
resize
var aForResize;
$(window).resize(function() {
clearTimeout(aForResize);
aForResize = setTimeout(function() {
// some code
},300);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment