It again doesn't work ?
var xmlObj = xmlHttp.responseXML.documentElement; alert(xmlObj);
i put this alert message.when explorer it displays [Object] and in Mozilla it displays [Object element]
after this code i put
master.value=xmlObj.childNodes[0].firstChild.nodeValue; alert(master.value);
then this alert is not working i think this makes an exception ?
Yes, the exception occurs at
master.value=xmlObj.childNodes[0].firstChild.nodeValue;
it seems.
In your catch block place an
alert(e);
So we can see what the exception is.