anyone have a code example of using xmlhttp with mozilla, if i use the
following code, the function is never called, but it does work in IE.
xmlhttp.onready statechange = function()
{
if (xmlhttp.readyS tate == 4)
{
var response = xmlhttp.respons eText;
divResponse.inn erHTML += "<p>" + response + "</p>";
}
}
following code, the function is never called, but it does work in IE.
xmlhttp.onready statechange = function()
{
if (xmlhttp.readyS tate == 4)
{
var response = xmlhttp.respons eText;
divResponse.inn erHTML += "<p>" + response + "</p>";
}
}
Comment