flyclassic
09-13-2002, 04:20 AM
var objDOM;
objDOM = new ActiveXObject("MSXML.DOMDocument");
objDOM.async = False;
objDOM.load("aflooding.xml");
alert(objDOM.xml);
my script is as follow , i would like to display my XML file. I've read up from some books and it always uses Alert(objDOM.xml), but i would like a direct output to the page instead of a popup.
Is there anyway you guys now?
objDOM = new ActiveXObject("MSXML.DOMDocument");
objDOM.async = False;
objDOM.load("aflooding.xml");
alert(objDOM.xml);
my script is as follow , i would like to display my XML file. I've read up from some books and it always uses Alert(objDOM.xml), but i would like a direct output to the page instead of a popup.
Is there anyway you guys now?