there is the editor._body() and editor._elem that can be used to take hold of the editor element (root/parent) but is there any method that can be used to get the XHTML content? getText returns the HTML but how about XHTML?
Hi Ryan,
That is not supported. Building javascript for xhtml parser would take too much space.
I needed some manipulation of the content and come up with a custom preview so I was thinking the XHTML could be loaded to Microsoft.XMLDOM and manipulated but the HTML cannot be loaded properly that I guess I'd just find some way using the DOM, xpath, javascript
Thanks for the reply.