Skip to content

Instantly share code, notes, and snippets.

@ddubson
Created August 18, 2011 00:57
Show Gist options
  • Save ddubson/1153040 to your computer and use it in GitHub Desktop.
Save ddubson/1153040 to your computer and use it in GitHub Desktop.
XML From-To String
function XMLToString(oXML) {
try { // FF, Chrome
return (new XMLSerializer()).serializeToString(oXML);
} catch(e) { // IE
return oXML.xml;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment