I hope someone can help me. I have inherited a web application from a developer who has left the company and he developed an application (not jQuery!) that seems to have a number of AJAX issues.
A page with a number of AJAX GET requests that request XML from a PHP service on the same server. The problem is these requests sometimes do not complete. When viewed in Firebug the waiting icon just keeps spinning and there is no response.
If I paste the request URL directly into the browsers address bar, I get a valid XML response immediately.
The code that makes the AJAX request looks like this:
xmlHttp.open("GET", this.rpcPage + '?mode=' + this._page + '&func=' + queryName + sysVars, true);
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 0) { }
if (xmlHttp.readyState == 1 || xmlHttp.readyState == 2 || xmlHttp.readyState == 3) { }
if (xmlHttp.readyState == 4) {
if (xmlHttp.status != 200) alert('error: ' + xmlHttp.status + ' ' + xmlHttp.statusText);
bindFunction(xmlHttp.responseText);
}
}
xmlHttp.send( null );
It appears fairly standard, so maybe I am missing something subtle here. Can anyone help me?
Thanks in advance, Stephen
if/else if. – kylex Nov 2 '11 at 15:45