JavaScript Callback Scope - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T22:35:05Zhttp://stackoverflow.com/feeds/question/183214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/183214/javascript-callback-scope4JavaScript Callback ScopeChris MacDonald2008-10-08T14:56:09Z2009-09-23T11:23:44Z
<p>I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.</p>
<pre><code>function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
var self = this;
this.dom.addEventListener("click", self.onclick, false);
}
foo.prototype = {
onclick : function() {
this.bar = 7;
}
};
</code></pre>
<p>Now when I create a new object (after the DOM has loaded, with a span#test)</p>
<pre><code>var x = new foo('test');
</code></pre>
<p>The 'this' inside the onclick function points to the span#test and not the foo object.</p>
<p>How do I get a reference to my foo object inside the onclick function?</p>
http://stackoverflow.com/questions/183214/javascript-callback-scope/183247#18324712Answer by Sergey Ilinsky for JavaScript Callback ScopeSergey Ilinsky2008-10-08T15:00:41Z2008-10-08T15:00:41Z<p><code>
this.dom.addEventListener("click", function(event) {self.onclick(event)}, false);
</code></p>
http://stackoverflow.com/questions/183214/javascript-callback-scope/183303#183303-2Answer by Javier for JavaScript Callback ScopeJavier2008-10-08T15:10:08Z2008-10-08T15:10:08Z<p>this is one of the most confusing points of JS: the 'this' variable means to the most local object... but functions are also objects, so 'this' points there. There are other subtle points, but i don't remember them all.</p>
<p>I usually avoid using 'this', just define a local 'me' variable and use that instead.</p>
http://stackoverflow.com/questions/183214/javascript-callback-scope/193853#1938536Answer by hishadow for JavaScript Callback Scopehishadow2008-10-11T08:33:30Z2009-09-23T11:23:44Z<p><em>(extracted some explanation that was hidden in comments in other answer)</em></p>
<p>The problem lies in the following line:</p>
<pre><code>this.dom.addEventListener("click", self.onclick, false);
</code></pre>
<p>Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).</p>
<p>The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:</p>
<pre><code>this.dom.addEventListener(
"click",
function(event) {self.onclick(event)},
false);
</code></pre>
<p>Since the variable self was assigned <em>this</em> when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.</p>
<p>An alternative way to solve this is to make an utility function (and avoid using variables for binding <em>this</em>):</p>
<pre><code>function bind(scope, fn) {
return function () {
fn.apply(scope, arguments);
};
}
</code></pre>
<p>The updated code would then look like:</p>
<pre><code>this.dom.addEventListener("click", bind(this, this.onclick), false)
</code></pre>
http://stackoverflow.com/questions/183214/javascript-callback-scope/193913#1939131Answer by Vincent Robert for JavaScript Callback ScopeVincent Robert2008-10-11T09:54:00Z2008-10-11T09:54:00Z<p>The explanation is that <code>self.onclick</code> does not mean what you think it means in JavaScript. It actually means the <code>onclick</code> function in the prototype of the object <code>self</code> (without in any way referencing <code>self</code> itself).</p>
<p>JavaScript only has functions and no delegates like C#, so it is not possible to pass a method AND the object it should be applied to as a callback.</p>
<p>The only way to call a method in a callback is to call it yourself inside a callback function. Because JavaScript functions are closures, they are able to access the variables declared in the scope they were created in.</p>
<pre><code>var obj = ...;
function callback(){ return obj.method() };
something.bind(callback);
</code></pre>
http://stackoverflow.com/questions/183214/javascript-callback-scope/758015#7580151Answer by alberto for JavaScript Callback Scopealberto2009-04-16T20:57:54Z2009-04-16T20:57:54Z<p>I wrote this plugin...</p>
<p>i think it will be useful</p>
<p><a href="http://code.google.com/p/jquerycallback/" rel="nofollow">jquery.callback</a></p>