Skip to content

Instantly share code, notes, and snippets.

@fleimisch
Last active December 4, 2015 12:56
Show Gist options
  • Select an option

  • Save fleimisch/ab5ac775a52a0dcf50e7 to your computer and use it in GitHub Desktop.

Select an option

Save fleimisch/ab5ac775a52a0dcf50e7 to your computer and use it in GitHub Desktop.
Timeout clear and run
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