Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created October 26, 2011 04:38
Show Gist options
  • Save jpoz/1315449 to your computer and use it in GitHub Desktop.
Save jpoz/1315449 to your computer and use it in GitHub Desktop.
Example = {};
Example.button = function(el) {
el.onclick = this.click;
}
Example.button.prototype.click = function() {
alert('YOU CLICK DA BUTTON');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment