Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with an object I have created that looks something like this:

var myObject = {

    AddChildRowEvents: function(row, p2) {
        if(document.attachEvent) {
            row.attachEvent('onclick', function(){this.DoSomething();});
        } else {
            row.addEventListener('click', function(){this.DoSomething();}, false);
        }
    },

    DoSomething: function() {
        this.SomethingElse(); //<-- Error here, object 'this' does not support this method.
    }
}

The problem is that when I am inside the 'DoSomething' function, 'this' does not refer to 'myObject' what am I doing wrong?

share|improve this question
1) stupid question, but does your object have a SomethingElse method? 2) try doing "function() {this.DoSomething(this);}" in the closure, and have DoSomething either take 0 args or 1 arg - see what happens and post your results. – Claudiu Dec 6 '08 at 7:19

4 Answers

WHen the function is called, "this" refers to row. If you want to have the object, you can do it something like this: ]

AddChildRowEvents: function(row, p2) {
    var theObj = this;
    if(document.attachEvent) {
         row.attachEvent('onclick', function(){theObj.DoSomething();});
    } else {
         row.addEventListener('click', function(){theObj.DoSomething();}, false);
    }
},

When the function is called, it has access to the variable theOBj which was in scope when the function was defined.

share|improve this answer
took me a while to get it - the reason is that row.attachEvent attaches an event to the row, and when that event fires, the row is the one that calls the function (it likely does something like f.apply(this, args)). am i correct? – Claudiu Dec 20 '08 at 8:40
Yes, that's correct. – Mike Kantor Feb 13 '09 at 21:04

this always refers to the inner function, if you have nested functions, you have to create another variable and point that to this.

var myObject = {
    AddChildRowEvents: function(row, p2) {
        var that = this;
        if(document.attachEvent) {
            row.attachEvent('onclick', function(){that.DoSomething();});
        } else {
            row.addEventListener('click', function(){that.DoSomething();}, false);
        }
    }
}
share|improve this answer
Are you sure that "that = this;" is valid in case of defining it inside object literal? @svinto – GnrlBzik Jan 4 at 17:27
@GnrlBzik: Good catch! It should have a var in front of it. – svinto May 21 at 18:05
dude this is an object, it expects key:value pairs. run this code against jshint.com – GnrlBzik yesterday
It seems I was very tired or something, sorry for the stupidity. – svinto 22 hours ago

This is a common issue with closures. To resolve it try something like this:

var myObject = {    
    AddChildRowEvents: function(row, p2) { 
        var self = this;

        if(document.attachEvent) {            
             row.attachEvent('onclick', function(){this.DoSomething(self);});        
        } else {            
             row.addEventListener('click', function(){this.DoSomething(self);}, false);        
        }    
    },    

    DoSomething: function(self) {       
        self.SomethingElse(); 
    }
}
share|improve this answer
2  
FYI, 'self' is a very dangerous variable name in the context of Javascript. Depending on your scope, you may actually be getting a reference to the document.window object. – Lübnah Sep 5 '12 at 0:06

I'm not sure what the generic solution is, but Prototype solves this using the bindAsEventListener function. You could either use Prototype, or look at how they implement it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.