I've got a file with an extension of .abc which is an XML file and I am processing the XML using XSL.
I open an HTML page which loads the XML using loadXMLDoc like this:
xml=loadXMLDoc("Example.xml");
xsl=loadXMLDoc("Example.xsl");
The problem is I need to open "Example.abc" not "Example.xml". If I try:
xml=loadXMLDoc("Example.abc");
the page loads but with no data.
Is there a way I can load the .abc file?