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
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
2 matches
Mail list logo