Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created August 1, 2012 22:13
Show Gist options
  • Save bittersweetryan/3231153 to your computer and use it in GitHub Desktop.
Save bittersweetryan/3231153 to your computer and use it in GitHub Desktop.
handlers1
var eventHandlers = {
name : 'Home Simpson',
clickHandler : function(){
console.log('hello: ' + this.name);
}
};
$("a").on('click',eventHanlers.clickHandler);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment