Skip to content

Instantly share code, notes, and snippets.

@lizlux
Created June 6, 2016 22:29
Show Gist options
  • Save lizlux/87ffa31797347b1357c634c68c4d2ca9 to your computer and use it in GitHub Desktop.
Save lizlux/87ffa31797347b1357c634c68c4d2ca9 to your computer and use it in GitHub Desktop.
JS Scope question with jQuery
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