Skip to content

Instantly share code, notes, and snippets.

@tylerstalder
Created November 9, 2011 18:00
Show Gist options
  • Save tylerstalder/1352274 to your computer and use it in GitHub Desktop.
Save tylerstalder/1352274 to your computer and use it in GitHub Desktop.
Return anonymous function pattern
var boom = function() {
return function(e) {
// amazing fancy things
e.target.style.color = "red";
}
}
$('#button').click(boom());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment