Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


xmlhttprequest related

From: "abcd" <abcd@----.--->
To: NULL
Date: 10/3/2006 2:02:00 PM

I have below code...why it is not working in firefox. I can see req object 
created in firefox too but it never goes to the onreadystatechange event and 
I can not see the alert ("hello")

-->

<script language="javascript">
var req;
function loadXMLDoc(url) {
 req = false;
    // branch for native XMLHttpRequest object
    if(window.XMLHttpRequest) {
     try {
   req = new XMLHttpRequest();
        } catch(e) {
   req = false;
        }
    // branch for IE/Windows ActiveX version
    } else if(window.ActiveXObject) {
        try {
         req = new ActiveXObject("Msxml2.XMLHTTP");
       } catch(e) {
         try {
            req = new ActiveXObject("Microsoft.XMLHTTP");
         } catch(e) {
            req = false;
         }
  }
    }
 if(req) {
  req.onreadystatechange = processReqChange();
  req.open("GET", url, true);
  req.send("");
 }
}

function processReqChange()
{
    if (req.readyState==4)
        alert("hello");
}

loadXMLDoc("http://www.microsoft.com");

</script> 




transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent