Javascript – Modify XML document inside the browser

javascriptxml

Is it possible to modify/write data to an XML file without any server-side proxy(e.g. a php or asp script)? Can this be done via javascript? XSLT?

Best Solution

You can load and modify xml in browser, but writing the file back is a different thing.

I don't know of any feasible way of writing data back to a server without some kind of server side mechanism to write the data to disk.