Hi,
You need not do it at all. You can read your XML in javascrip by simple.
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
loadXML('XMLFiles/dsXML.xml');
function loadXML(xmlFile)
{
xmlDoc.async="false";
xmlDoc.onreadystatechange=verify;
xmlDoc.load(xmlFile);
xmlObj=xmlDoc.documentElement;
}
Now your XML file is in xmlObj. You can work with it.
Dharmendra
|