vote up 0 vote down star

I have a class that creates an anchor object. When the user clicks on the anchor I want it to run a function from the parent class.

function n()
{
    var make = function()
    {
    	...

    	var a = document.createElement('a');	
    	a.innerHTML = 'Add';
    	//this next line does not work, it returns the error: 
    	//"this.add_button is not a function"
    	a.onclick = function() { this.add_button(); }												

    	...
    }

    var add_button = function()
    {
    	...
    }

}

How can I get this done?

flag

3 Answers

vote up 4 vote down check

Looks like you just need to get rid of the "this." in front of add_button()

You are declaring add_button as a local variable (or private in the weird way that javascript classes work), so it isn't actually a member of "this".

Just use:

a.onclick = function(){add_button();}
link|flag
+1. Hopefully he doesn't need the value of that this pointer inside add_button, but this is a good star. – Triptych Aug 25 at 17:52
In this case, I don't. :) – Ian Aug 25 at 17:57
vote up 1 vote down

The reason it's not working is that this in the context of the onclick function is not the same as this in the context of the n function/"class". If you want this within the function to be equivalent to this from the class, you need to bind this to the function.

Binding is a way of changing the scope of a function -- essentially if you bind to a function, you are replacing the this variable to point to something else. You can read more about binding in Javascript in this alternateidea article.

If you were using prototype, for example, you could do something like:

function n()
{
    var make = function()
    {
        ...
        a.onclick = function() { this.add_button() }.bind(this);
        ...
    }
}

Which would bind class n's this to the onclick function, thus giving the effect you want.

link|flag
Interesting.... – Ian Aug 25 at 18:05
vote up 0 vote down

The "this" in "this.add_button();" is actually referring to the anchor element itself which has no "add_button()" function, if I'm not mistaken.

Perhaps this would work:

a.onclick = function() { n.add_button(); }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.