I'm currently working on developing a JavaScript plugin that will allow users to easily edit XML files. The idea is to take an XML string representing an object, generate an HTML form dynamically for editing the values, and then save the changes back into the XML string.
While I believe this feature would be widely beneficial, I suspect that there may already be a solution available that accomplishes this task. Does anyone know of a JavaScript library or project that can do this effectively? The closest match I have found so far is this.
There are some specific requirements for the solution:
- It must be written in pure JavaScript and ideally work across different browsers.
- The entire process should be executed on the client-side, starting from the input XML string to the final edited output XML string.
Any help would be greatly appreciated!
- Dave