Hi,
I'm trying to read a XML file(say country.xml) located in templatedata\category(say x)\data-type(say y) in my javascript readXML.js located at same heirarchy.
But I'm failing to do so. What could be the problem?
This is the code I'm using in readXML.js
var xmlDoc= new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.asyn="false";
xmlDoc.load("country.xml");
xmlObj= xmlDoc.documentElement;
I have also used the complete path, but still in vain.

Please help me out on this.
Thanks,
Maddy