Created
September 5, 2015 22:28
-
-
Save JBlackCat/bcd732181ba333742674 to your computer and use it in GitHub Desktop.
onResizeDone -
This file contains 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
var resizeTimer; | |
$(window).on('resize', function(e) { | |
clearTimeout(resizeTimer); | |
resizeTimer = setTimeout(function() { | |
// 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
Reference: https://css-tricks.com/snippets/jquery/done-resizing-event/