vote up 1 vote down star
1

Hi, i'm trying to get this function to work, which does a request for parameter 'url' then sends the responseText to 'callback' which is a function. But it seems that it only gets to readyState 1 (thanks to the firebug commands).

Here it is:

function Request(url, callback){
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
    httpRequest = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
    httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
} else{
	return false;
}
httpRequest.onreadystatechange = function(){
	console.log(httpRequest.readyState);
    if (httpRequest.readyState == 4) {
		callback(httpRequest.responseText);
	}
};
console.log(httpRequest, url);
httpRequest.open('GET', url, true);
httpRequest.send(null);
}
flag

Hi Joe, I'm interested what was your solution? Did you find one? My workaround to this prob was assigning onload event instead of onreadystatechange (see details below in answers). – Svitlana Maksymchuk Jun 8 at 6:17
i dunno.... sorry i haven't been on the site for a while. well it worked but I just switched to jQuery and it's working properly. – kennyisaheadbanger Jul 11 at 13:47

3 Answers

vote up 0 vote down check

I workarounded this problem assigning onload event instead of onreadystatechange:

function Request(url, callback){
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
    httpRequest = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
    httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
} else{
        return false;
}

var readyStateChange = function(){
    console.log(httpRequest.readyState);

    if (httpRequest.readyState == 4) {
                callback(httpRequest.responseText);
    }
};


if (isFirefox && firefoxVersion > 3) {
    httpRequest.onload = readyStateChange;
} else {
    httpRequest.onreadystateshange = readyStateChange;
}

console.log(httpRequest, url);
httpRequest.open('GET', url, true);
httpRequest.send(null);
}
link|flag
vote up 1 vote down

Possibly the Ajax request doesn't return data (so, a server side error of some kind). Try enabling the option 'show XMLHttpRequests' in the firebug console, to check for this.

link|flag
Well it's already on and I log the http object and inspecting it gives me readyState 4, but the event is not being called. Also the page returns data properly – kennyisaheadbanger Apr 15 at 13:27
oh! it works in safari but not firefox! that's very strange – kennyisaheadbanger Apr 15 at 13:28
Tried logging my own xmlHTTP lib function in FF, no problem. In my case I use => if (httpRequest.readyState < 4) {console.log(...);} else { [exec the callback]}. – KooiInc Apr 15 at 14:46
Furthermore: my readystatechange handler is defined after the send method is called. – KooiInc Apr 15 at 14:50
vote up 1 vote down

Check that the URL in question does actually respond by visiting it directly in the browser.

Test with a different browser do you get the same result.

Use some form of HTTP monitor to watch the client to server conversation (my favorite is Fiddler)

link|flag

Your Answer

Get an OpenID
or

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