[jQuery] Re: Converting XML to a string with jQuery

2007-12-19 Thread McLars
I don't know about jQuery, I doubt it, but apparently IE does have an XMLSerializer. Of course, the syntax would be different. You can try searching for "jscript xmlserializer" and see if that yields anything useful. But then you'd probably be out of luck with Safari, Opera, etc. You might end up

[jQuery] Re: Converting XML to a string with jQuery

2007-12-19 Thread Tony
Try this, //IE if (window.ActiveXObject) { var string = xmlData.xml; } // code for Mozilla, Firefox, Opera, etc. else { var string = (new XMLSerializer()).serializeToString(xmlData); } On 19 Дек, 18:02, Stefan <[EMAIL PROTECTED]> wrote: > Hello, > > I have some data in XML representatio