Skip to content

Instantly share code, notes, and snippets.

@umkasanki
Created March 25, 2019 12:59
Show Gist options
  • Save umkasanki/364e883a47234f12fb216662a2057ed8 to your computer and use it in GitHub Desktop.
Save umkasanki/364e883a47234f12fb216662a2057ed8 to your computer and use it in GitHub Desktop.
Done Resizing Event
let resizeTimer = 0;
$(window).on('resize', function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function() {
console.log($(window).width());
// 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