Hello, I have some data in XML representation that I will need to convert to a string. I tried using XMLSerializer - works great in Firefox, but not in IE:
var xmlString = (new XMLSerializer()).serializeToString(xmlData); Is there any way to convert XML to its string representation with jQuery? Or other ways to accomplish this task? Thank you! Steffen

