Skip to content

Instantly share code, notes, and snippets.

@codylindley
Created April 7, 2011 19:34
Show Gist options
  • Save codylindley/908516 to your computer and use it in GitHub Desktop.
Save codylindley/908516 to your computer and use it in GitHub Desktop.
var message = 'Spoon!';
$('#foo').bind('click', {msg: message}, function(event) {
alert(event.data.msg);
});
message = 'Not in the face!';
$('#bar').bind('click', {msg: message}, function(event) {
alert(event.data.msg);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment