Ho provato ad utilizzare il DOM per manipolare delle stringe XML.

Prendete questo classico esempio:



file="<test><tag1>Questo è il tag 1</tag1></test>"
var fieldXML = new ActiveXObject("Microsoft.XMLDOM");
fieldXML.async = false;
fieldXML.loadXML(file);
root = fieldXML.documentElement;
sySubrc = true;

alert(root.firstChild.text)

Su Explorer mi funziona benissimo ma...su Netscape non succede niente!
Qualcuno sa spiegarmi il motivo?
Percaso Netscape non supporta questi tipi di script?