This is a basics question but I cannot figure out why the context ( the 'this' pointer ) is correct in the second event handler and incorrect in the first one.
I have this simple constructor function to create the object myNotifier:
function Notifier ( message ) {
this.message = message;
this.saySomething = function () {
alert( "I say:" + this.message);
}
}
myNotifier = new Notifier(" HELLO!");
Then I use the myNotifier.saySomething() method as an event handler for CLICK on two buttons:
$(".button1").click( myNotifier.saySomething );
$(".button2").click( function () { myNotifier.saySomething()});
The first one shows: "I say: undefined" The second one shows: "I say: HELLO"
I understand that the context (this )is not the original object when calling the method, but why is it correct when calling inside a function for the second button?