Convert XML to String and String to XML Using Javascript
Here I have written how to Convert XML to String and String to XML Using Javascript
XML to String :
String to XML :
XML to String :
<script language="javascript" type="text/javascript">
function XMLToString(oXML)
{
//code for IE
if (window.ActiveXObject) {
var oString = oXML.xml; return oString;
}
// code for Chrome, Safari, Firefox, Opera, etc.
else {
return (new XMLSerializer()).serializeToString(oXML);
}
}
</script>
String to XML :
<script type="text/javascript" language="javascript">
function StringToXML(oString) {
//code for IE
if (window.ActiveXObject) {
var oXML = new ActiveXObject("Microsoft.XMLDOM"); oXML.loadXML(oString);
return oXML;
}
// code for Chrome, Safari, Firefox, Opera, etc.
else {
return (new DOMParser()).parseFromString(oString, "text/xml");
}
}
</script>
No comments: