Skip to content

Instantly share code, notes, and snippets.

@BryanBarrera
Created July 21, 2016 22:52
Show Gist options
  • Select an option

  • Save BryanBarrera/7f4e56b4657bc15de9c1b5b0a1efd51c to your computer and use it in GitHub Desktop.

Select an option

Save BryanBarrera/7f4e56b4657bc15de9c1b5b0a1efd51c to your computer and use it in GitHub Desktop.
Resize function w/ delay
var a;
$(window).resize(function(){
clearTimeout(a);
a = setTimeout(function(){
// call your function
},750);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment