Skip to content

Instantly share code, notes, and snippets.

@ehynds
Created April 26, 2010 12:00
Show Gist options
  • Save ehynds/379242 to your computer and use it in GitHub Desktop.
Save ehynds/379242 to your computer and use it in GitHub Desktop.
// recursive setTimeout, better than setInterval. @paul_irish
(function f(){ if(condition){} else{ setTimeout(f, 1000); } })().
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment