I created my first AJAX application and everything was going great when I used responseText to retrieve my data.
I decided to switch to XML output and now I receive "Object Null" error when I alert my output. When I change it back to responseText I can see the XML output.
Can someone tell me what is wrong?
JavaScript Code:
function stateChanged()
{
if ((xmlRT.readyState==4)&&(xmlRT.status == 200))
{
var xmlobj=xmlRT.responseXML;
alert(xmlobj);
}
}