Created
June 6, 2016 22:29
-
-
Save lizlux/87ffa31797347b1357c634c68c4d2ca9 to your computer and use it in GitHub Desktop.
JS Scope question with jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myObj = { | |
init: function () { | |
var paragraph = $('.entry-content p'); | |
paragraph.on('click', this.clicked); | |
}, | |
clicked: function () { | |
console.log(this); | |
} | |
}; | |
myObj.init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment