Skip to content

Instantly share code, notes, and snippets.

@mxriverlynn
Created December 21, 2011 21:18
Show Gist options
  • Save mxriverlynn/1507747 to your computer and use it in GitHub Desktop.
Save mxriverlynn/1507747 to your computer and use it in GitHub Desktop.
Foo = {};
Foo.bar = function(){
alert("test");
}
setTimeout(Foo.bar, 1000); // 1 second later, alert's "test"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment