Using a Non-IE5.0 browser - How can I load an XML formatted

admin

Administrator
Staff member
I am not using Internet Explorer 5.0 for my development. I have an appletrunning that sends data to me in an XML formatted string. How do I get thisstring loaded into the DOM? Using IE 5.0 you can do the following:var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");xmlDoc.loadXML(xmlString); // which loads the stringUnfortunately, I am using a beta IceStorm Browser and I get an error thatsays "ActiveXObject" is not defined.Does anyone have any ideas? Thanks!
 
Back
Top