Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. HTMLElement.prototype.flex = new function(){
  2. var obj = this;
  3. this.event = new function(){
  4. this.clicked = function(func){
  5. //return HTMLElement
  6. console.log(this); //returns clicked method
  7. console.log(obj); //returns the class object
  8. }
  9. }
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement