Skip to content

Instantly share code, notes, and snippets.

@jesusaguilera
Last active February 8, 2020 07:34
Show Gist options
  • Select an option

  • Save jesusaguilera/de440b542503d9b1d471c02932d89509 to your computer and use it in GitHub Desktop.

Select an option

Save jesusaguilera/de440b542503d9b1d471c02932d89509 to your computer and use it in GitHub Desktop.
Detect when window resize stop
let resizeId;
$(window).resize(() => {
clearTimeout(resizeId);
resizeId = setTimeout(doneResizing, 500);
});
function doneResizing(){
console.log('resized!')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment