Response.text in Mozilla returns null / undefined

A

Anat

Hi,

When I use the following function

function SyncHTTPRequest(strURLWithParams)
{
var oXMLHttp;
// code for Mozilla, etc.
if (window.XMLHttpRequest)
{
oXMLHttp = new XMLHttpRequest()
}
// code for IE
else if (window.ActiveXObject)
{
oXMLHttp = new ActiveXObject("Microsoft.XMLHTTP")
}

if (oXMLHttp)
{
oXMLHttp.open("GET",strURLWithParams,false)
oXMLHttp.send("a")
}
return oXMLHttp.ResponseText;
}

the oXMLHttp.ResponseText returned in Mozilla is always NULL or
undefined, whereas in IE it works fine.

Am I missing something?

Thanks, Anat.
 
I

Ian Collins

Anat said:
return oXMLHttp.ResponseText;
}

the oXMLHttp.ResponseText returned in Mozilla is always NULL or
undefined, whereas in IE it works fine.
Hardly surprising, considering XMLHttpRequest doesn't have a
ResponseText attribute. It does have responseText.
 
A

Anat

Oops...
Thanks!!!! Learn something new every day... :)
It's the second time you've helped me. Thanks again!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top