Last active
December 4, 2015 12:56
-
-
Save fleimisch/ab5ac775a52a0dcf50e7 to your computer and use it in GitHub Desktop.
Timeout clear and run
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 sliderResizeTimer; | |
| clearTimeout(sliderResizeTimer); | |
| sliderResizeTimer = setTimeout(function() { | |
| // DO something every 100ms | |
| }, 100); | |
| OR | |
| setTimeout(function(){ | |
| overlayBoxClose(); | |
| }, 3000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment