I\'m wondering, is it possible to create an XML file with some data in Javascript? I have the data stored in variables.
I\'ve googled around a bit and it doesn\'t see
Simply use
var xmlString = ''; var xml = jQuery.parseXML(xml);
It's jQuery.parseXML, so no need to worry about cross-browser tricks. Use jQuery as like HTML, it's using the native XML engine.