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

I saw the following in the source for WebKit HTML 5 SQL Storage Notes Demo:

function Note() {
  var self = this;

  var note = document.createElement('div');
  note.className = 'note';
  note.addEventListener('mousedown', function(e) { return self.onMouseDown(e) }, false);
  note.addEventListener('click', function() { return self.onNoteClick() }, false);
  this.note = note;
  // ...
}

The author uses self in some places (the function body) and this in other places (the bodies of functions defined in the argument list of methods). What's going on? Now that I've noticed it once, will I start seeing it everywhere?

share|improve this question

4 Answers

up vote 109 down vote accepted

see: http://www.alistapart.com/articles/getoutbindingsituations

self is being used to maintain a reference to the original this even as the context is changing. It's a technique often used in event handlers (especially in closures).

share|improve this answer
10  
Thanks for the pointer to an excellent article. – Thomas L Holaday Jun 7 '09 at 15:15

Yes, you'll see it everywhere. It's often "that=this;".

See how "self" is used inside functions called by events? Those would have their own context, so self is used to hold the "this" that came into Note().

The reason "self" is still available to the functions, even though they can only execute after the Note() function has finished executing, is that inner functions get the context of the outer function due to "closure."

share|improve this answer

It should also be noted there is an alternative Proxy pattern for maintaining a reference to the original this in a callback if you dislike the var self = this idiom.

As a function can be called with a given context by using function.apply or function.call, you can write a wrapper that returns a function that calls your function with apply or call using the given context. See jQuery's proxy function for an implementation of this pattern. Here is an example of using it:

var wrappedFunc = $.proxy(this.myFunc, this);

wrappedFunc can then be called and will have your version of this as the context.

share|improve this answer

The variable is captured by the inline functions defined in the method. this in the function will refer to another object. This way, you can make the function hold a reference to the this in the outer scope.

share|improve this answer

Your Answer

 
discard

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

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