up vote 12 down vote favorite
9
share [g+] share [fb]

I have an XML object (loaded using XMLHTTPRequest's responseXML). I have modified the object (using jQuery) and would like to store it as text in a string.

There is apparently a simple way to do it in Firefox et al:

var xmlString = new XMLSerializer().serializeToString( doc );

(from rosettacode )

But how does one do it in IE6 and other browsers (without, of course, breaking Firefox)?

link|improve this question

feedback

1 Answer

up vote 17 down vote accepted

You can use doc.xml in internet exlporer.

You'll get something like this:

function xml2Str(xmlNode) {
   try {
      // Gecko- and Webkit-based browsers (Firefox, Chrome), Opera.
      return (new XMLSerializer()).serializeToString(xmlNode);
  }
  catch (e) {
     try {
        // Internet Explorer.
        return xmlNode.xml;
     }
     catch (e) {  
        //Other browsers without XML Serializer
        alert('Xmlserializer not supported');
     }
   }
   return false;
}

Found it here.

link|improve this answer
2  
XMLSerializer() would work in IE9. – nimbupani Nov 6 '10 at 1:05
Thanks... I finally found this after two days of searching. (It took me a while to realize that .xml was simply not there for FF/Chrome, I had assumed I was doing something wrong.) – Marcel Popescu Sep 4 '11 at 19:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.