Skip to content

Instantly share code, notes, and snippets.

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

  • Save BryanBarrera/48a5e285ebac811c7a63bbe9e3270ba5 to your computer and use it in GitHub Desktop.

Select an option

Save BryanBarrera/48a5e285ebac811c7a63bbe9e3270ba5 to your computer and use it in GitHub Desktop.
Done Resizing
var resizeTimer;
$(window).on('resize', function(e) {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
// Run code here, resizing has "stopped"
}, 250);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment