Hi everyone,
This is my first post to this forum, hope I would get a reply quickly :-)
Iam using loadXML(xmlStri ng) and it is always returning "false". My code looks like this :
[CODE=javascript]if (window.ActiveX Object)
{
var responseXml=new ActiveXObject(" Microsoft.XMLDO M");
responseXml.asy nc="false";
var wellFormedMarku p = "<g>"+strin g+"</g>";
alert(wellForme dMarkup);
//alert(responseX ml.loadXML(well FormedMarkup));
loaded = responseXml.loa dXML(wellFormed Markup);
alert(loaded);
.......
}
[/CODE]when I print the value for the *string*, it displays the response text.
So its not null or empty.
Where did I get deviated???
Thank You in advance.
Regards,
Suman
This is my first post to this forum, hope I would get a reply quickly :-)
Iam using loadXML(xmlStri ng) and it is always returning "false". My code looks like this :
[CODE=javascript]if (window.ActiveX Object)
{
var responseXml=new ActiveXObject(" Microsoft.XMLDO M");
responseXml.asy nc="false";
var wellFormedMarku p = "<g>"+strin g+"</g>";
alert(wellForme dMarkup);
//alert(responseX ml.loadXML(well FormedMarkup));
loaded = responseXml.loa dXML(wellFormed Markup);
alert(loaded);
.......
}
[/CODE]when I print the value for the *string*, it displays the response text.
So its not null or empty.
Where did I get deviated???
Thank You in advance.
Regards,
Suman
Comment