Skip to content

Instantly share code, notes, and snippets.

@ericksahara
Created July 10, 2015 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericksahara/f59bdf5f73e4ab25988a to your computer and use it in GitHub Desktop.
Save ericksahara/f59bdf5f73e4ab25988a to your computer and use it in GitHub Desktop.
Done Resizing Event
// https://css-tricks.com/snippets/jquery/done-resizing-event/
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