if(window.ActiveXObject)
{//For IE Browsers. This coding works well in IE browsers
var tempNode=xmlSoapTemplate.selectSingleNode(pathString+"xmlDatasets");
tempNode.appendChild(xmlDataReturn.documentElement);
}
else
{//verify the code below.(Safari Support)
alert("Checking");
var tempNode=xmlSoapTemplate.evaluate(pathString+"xmlDatasets", xmlSoapTemplate, null, XPathResult.ANY_TYPE,null);
alert("Passed");
tempNode.appendChild(xmlDataReturn.documentElement);
}
Kindly verify the safari code.
The code execution breaks after showing the alert("Checking");

New Topic/Question
Reply



MultiQuote






|