vote up 3 vote down star

I have something like this:

var Something = function(){
  this.render = function(){};
  $(window).resize(function(){
    this.render();
  });
}

The trouble is that inside the anonymous function 'this' refers to the window object. I know I could do something like:

var Something = function(){
  this.render = function(){};
  var tempThis = this;
  $(window).resize(function(){
    tempThis.render();
  });
}

but is there a better way? This doesn't look very elegant.

flag

75% accept rate
1  
You should put a "var" before the "tempThis = this" to ensure proper scope. – Matt Jun 25 at 12:13

5 Answers

vote up 9 vote down check

The solution you found is the the one most people use. The common convention is to call your tempThis variable "that."

var Something = function(){
  this.render = function(){};
  var that = this;
  $(window).resize(function(){
    that.render();
  });
};
link|flag
+1 for that (: – peirix Jun 25 at 12:15
well having a convention makes it look more elegant :) I like "that". – Discodancer Jun 25 at 12:20
+1 for that = this -> This is the most elegant method that I ever found for this question. – Nordin Jun 25 at 12:23
1  
Please add a "var" before "that" in order to not polute the global scope with your variable. Another convention is to call this variable "self". – Vincent Robert Jun 25 at 12:33
1  
I used to use "self" until I noticed that there's a global variable named "self" in browsers sometimes that refers to the global object. If you typo something, your this becomes the global object again, and no error is thrown, and it's harder to track down because it looks like you did the right thing, but it's doing the wrong thing anyway! – Breton Jun 25 at 13:13
show 1 more comment
vote up 0 vote down

That's exactly what I do. It's not specific to jQuery, either.

var Construct = function() {
    var self = this; //preserve scope

    this.materials = 2000;

    this.build = function(){
        self.materials -= 100;
    };
};

Remember to use the var keyword in front of your new scope variable. Otherwise, you're creating a new global variable. As a local variable, it will still be accessible inside the inner function via a closure.

link|flag
vote up 1 vote down

FYI the ability to control this is coming in the next version of JQuery

link|flag
vote up 0 vote down

I've been doing it this way in many tight situations. It doesn't look elegant, but it never fails. Actually thats javascript closures in action.

jrh

link|flag
vote up 2 vote down

That looks like your best option, I don't think there's a better way. (someone correct my if I'm wrong).

link|flag
+1 seconded . – harshath.jr Jun 25 at 12:12

Your Answer

Get an OpenID
or

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