show/hide this revision's text 2 added 1369 characters in body

The reason is that because onstatechange is being called as an event handler, and therefore the this pointer will be is likely pointing to the HTML element object on which the event fired, not the ajaxRequest object, as you expect.

The below rewrite stores the this variable in a variable called that in the execution context to which the onstatechange() function has access. This ought to cure the problem.

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.

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;
        }
    }
}
show/hide this revision's text 1

The reason is that because onstatechange is being called as an event handler, and therefore the this pointer will be pointing to the HTML element on which the event fired, not the ajaxRequest object, as you expect.