XML Editor and Viewer JQuery Plugin or Web Plugin
I wanted to ask if you know any good XML Editor & Viewer that I can use as a plugin to my application? Something that works like a TinyMCE Plugin but for XML Files, wherein user can modify and view the XML.
I found one
https://www.jqueryscript.net/demo/tree-xml-viewer-formatter/ Sample implementation
var xml = "<description><of>Hello</of><og /><blob> </blob><!-- Comment here --><![CDATA[sdfsdf]]><childNode><bob>fd<bob2></bob2><bob21 /></bob></childNode><!--Second Comment--></description>"; $("#simpleUseCase").empty().simpleXML({ xmlString: xml });
But this doesnt allow me to edit the XML,
Thank You,