How to add callback function to a javascript class? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T14:59:51Zhttp://stackoverflow.com/feeds/question/456767http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/456767/how-to-add-callback-function-to-a-javascript-class0How to add callback function to a javascript class?Hasan Khan2009-01-19T07:02:15Z2009-01-19T07:35:36Z
<p>The following code in javascript gives me the error <em>"this.callback is not a function</em></p>
<pre><code>function ajaxRequest()
{
var httpObject;
this.open = open;
this.callback = function(){};
function getHTTPObject()
{
if (window.ActiveXObject)
return new ActiveXObject("Microsoft.XMLHTTP");
else if (window.XMLHttpRequest)
return new XMLHttpRequest();
else
{
alert("Your browser does not support AJAX.");
return null;
}
}
function onstatechange()
{
if(httpObject.readyState == 4)
{
this.callback(httpObject.responseText);
}
}
function open(url, callback)
{
httpObject = getHTTPObject();
if (httpObject != null)
{
httpObject.open("GET", url, true);
httpObject.send(null);
this.callback = callback;
httpObject.onreadystatechange = onstatechange;
}
}
}
</code></pre>
<p>why doesn't open method treat the callback parameter as function?</p>
<p>If it does then why can't i call it in onstatechange function?</p>
<p>How do i make this work?</p>
http://stackoverflow.com/questions/456767/how-to-add-callback-function-to-a-javascript-class/456790#4567905Answer by Triptych for How to add callback function to a javascript class?Triptych2009-01-19T07:28:38Z2009-01-19T07:35:36Z<p>The reason is that because <code>onstatechange</code> is being called as an event handler, and the <code>this</code> pointer is likely pointing to the object on which the event fired, not the <code>ajaxRequest</code> object, as you expect. </p>
<p>The below rewrite stores the <code>this</code> variable in a variable called <code>that</code> in the execution context to which the onstatechange() function has access. This ought to cure the problem.</p>
<p>The long and short of all this is if you don't thoroughly understand Javascript closure and execution contexts, and even if you do, you're much, much better off using a framework to do your AJAX requests. jQuery and Prototype are good choices.</p>
<pre><code>function ajaxRequest()
{
var httpObject;
this.open = open;
this.callback = function(){};
var that = this;
function getHTTPObject()
{
if (window.ActiveXObject)
return new ActiveXObject("Microsoft.XMLHTTP");
else if (window.XMLHttpRequest)
return new XMLHttpRequest();
else
{
alert("Your browser does not support AJAX.");
return null;
}
}
function onstatechange()
{
if(httpObject.readyState == 4)
{
that.callback(httpObject.responseText);
}
}
function open(url, callback)
{
httpObject = getHTTPObject();
if (httpObject != null)
{
httpObject.open("GET", url, true);
httpObject.send(null);
this.callback = callback;
httpObject.onreadystatechange = onstatechange;
}
}
}
</code></pre>