Skip to content

Instantly share code, notes, and snippets.

@Origame
Created October 25, 2016 09: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 Origame/daf438839b2fed8bca99d5c0660a877a to your computer and use it in GitHub Desktop.
Save Origame/daf438839b2fed8bca99d5c0660a877a to your computer and use it in GitHub Desktop.
Smart resize function
//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"
}, 100);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment