Skip to content

Instantly share code, notes, and snippets.

@e7h4n
Created August 31, 2011 11:09
Show Gist options
  • Save e7h4n/1183311 to your computer and use it in GitHub Desktop.
Save e7h4n/1183311 to your computer and use it in GitHub Desktop.
var foo = {
bind: function() {},
trigger: function() {}
};
foo.bind('fooEvent', function() {
alert('a');
}); // Nothing will be alerted
foo.trigger('fooEvent'); // 'a' will be alerted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment