Created
March 25, 2019 12:59
-
-
Save umkasanki/364e883a47234f12fb216662a2057ed8 to your computer and use it in GitHub Desktop.
Done Resizing Event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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