Question : (ajaxobject).readyState at zero?

I'm trying to use ajax techniques to post information to a database and then reload the contents of a div using the new information.  The javascript call to launch the php script works (.open('POST',url,true)), and the information correctly posts into the database.  The .responseText, however, is never generated. Upon further testing, it seems that the status and readyState of the connection object never get past 0.

Attached is the code.  In this example, stateChanged is called (bizarre) as the first alert() is called, but the inner alert() is never called.  That is, the if statement is never satisfied.

Any help would be greatly appreciated!

~Mikey
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
function stateChanged(objectId) //for use in AJAX functions, receives the result and inserts it into page //DO NOT CHANGE
	{
	alert("status=" + xmlHttp.status + "\nstate=" + xmlHttp.readyState);
	if(xmlHttp.readyState==4 || xmlHttp.readyState=='complete')
		{
		alert('complete');
		document.getElementById(objectId).innerHTML = xmlHttp.responseText;
		}
	}	
	
function insertNoteAJAX(repairid,note,submitter) //AJAX portion of insertNote(repairid)
	{
	var url = "insertnote.ajax.php";
	var rnd = Math.random();
	xmlHttp.onreadystatechange = stateChanged('entry_'+repairid);
	xmlHttp.open("POST",url,true);
	var params = "repairid="+encodeURI(repairid)+"¬e="+encodeURI(note)+"&submitter="+encodeURI(submitter)+"&sid="+rnd;
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	//xmlHttp.setRequestHeader("Content-length", params.length);
	//xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(params);
	}
Open in New Window Select All

Answer : (ajaxobject).readyState at zero?

change:
xmlHttp.onreadystatechange = stateChanged('entry_'+repairid);

to:
xmlHttp.onreadystatechange = function(){ stateChanged('entry_'+repairid); };
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
function stateChanged(objectId) //for use in AJAX functions, receives the result and inserts it into page //DO NOT CHANGE
	{
	alert("status=" + xmlHttp.status + "\nstate=" + xmlHttp.readyState);
	if(xmlHttp.readyState==4 || xmlHttp.readyState=='complete')
		{
		alert('complete');
		document.getElementById(objectId).innerHTML = xmlHttp.responseText;
		}
	}	
	
function insertNoteAJAX(repairid,note,submitter) //AJAX portion of insertNote(repairid)
	{
	var url = "insertnote.ajax.php";
	var rnd = Math.random();
	xmlHttp.onreadystatechange = function(){ stateChanged('entry_'+repairid); };
	xmlHttp.open("POST",url,true);
	var params = "repairid="+encodeURI(repairid)+"¬e="+encodeURI(note)+"&submitter="+encodeURI(submitter)+"&sid="+rnd;
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	//xmlHttp.setRequestHeader("Content-length", params.length);
	//xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(params);
	}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us