Hi,
Can someone tell me how to get the content of entire xml file in
Firefox?
I am using this code to load the xml file.
if (document.imple mentation && document.implem entation.create Document)
{
xmlDoc = document.implem entation.create Document("","", null);
xmlDoc.async="f alse";
var isLoaded = xmlDoc.load("al lcounties_3.xml ");
if (isLoaded == true) {
//alert(xmlDoc.do cumentElement.x ml);
}
}
I tried xmlDoc.document Element.xml but it dont work.
How can I read the entire xml file in a variable?
Can someone tell me how to get the content of entire xml file in
Firefox?
I am using this code to load the xml file.
if (document.imple mentation && document.implem entation.create Document)
{
xmlDoc = document.implem entation.create Document("","", null);
xmlDoc.async="f alse";
var isLoaded = xmlDoc.load("al lcounties_3.xml ");
if (isLoaded == true) {
//alert(xmlDoc.do cumentElement.x ml);
}
}
I tried xmlDoc.document Element.xml but it dont work.
How can I read the entire xml file in a variable?
Comment