Skip to content

Instantly share code, notes, and snippets.

@mvrilo
Created June 14, 2010 19:46
Show Gist options
  • Save mvrilo/438193 to your computer and use it in GitHub Desktop.
Save mvrilo/438193 to your computer and use it in GitHub Desktop.
// setTimeout Looping
function loop(fn,time){
setTimeout(fn(),time);
loop(fn(),time);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment