Skip to content

Instantly share code, notes, and snippets.

@thomas-lebeau
Last active August 29, 2015 14:19
Show Gist options
  • Save thomas-lebeau/aff093cf6b6386c8fd08 to your computer and use it in GitHub Desktop.
Save thomas-lebeau/aff093cf6b6386c8fd08 to your computer and use it in GitHub Desktop.
Fire event when window resizing is finished
var resizeId;
$(window).resize(function() {
clearTimeout(resizeId);
resizeId = setTimeout(doneResizing, 500);
});
function doneResizing(){
//whatever we want to do
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment