Hey guys,
So I'm trying to write a javascript plugin that involves the editing of XML files in a user friendly fashion. The goal is to receive an XML string representing an object, dynamically generate an HTML form to edit the XML values, then save the changes back into the XML string.
Granted this function is generic and useful enough, I figured there's likely a solution that does exactly this out there. Does anyone know of some sort of JavaScript library or project that can accomplish this? The closest thing I can find to the functionality I wanted was this.
Some notable constraints for the solution:
- Must be solely Javascript, ideally cross-browser compatible.
- Must operate completely on the client-side, from input XML string, to edited output XML string.
Thanks in advance!
Dave