Reputation: 8727
I think this property is quite useful,
http://www.w3schools.com/Dom/prop_document_xml.asp
But as you can see, it's only available in IE.
Is there an equivalent of this property in other browsers?
Thanks in advance.
Upvotes: 1
Views: 684
Reputation: 324627
The xml property is non-standard. The equivalent in other browsers is XMLSerializer.
function serializeXmlNode(xmlNode) {
if (typeof window.XMLSerializer != "undefined") {
return (new window.XMLSerializer()).serializeToString(xmlNode);
} else if (typeof xmlNode.xml != "undefined") {
return xmlNode.xml;
}
return "";
}
Upvotes: 4