Last active
August 29, 2015 14:25
-
-
Save jordanneenan/c1f273079e3ea99b3562 to your computer and use it in GitHub Desktop.
Call function after timeout on page resize
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
| var rtime; | |
| var timeout = false; | |
| var delta = 200; | |
| $(window).resize(function() { | |
| rtime = new Date(); | |
| if (timeout === false) { | |
| timeout = true; | |
| setTimeout(resizeend, delta); | |
| } | |
| }); | |
| function resizeend() { | |
| if (new Date() - rtime < delta) { | |
| setTimeout(resizeend, delta); | |
| } else { | |
| timeout = false; | |
| alert('Done resizing'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment