I am doing XSLT transformation in the Safari browser using Javascript.
The final output of my transformation is a document-fragment object whose content is as below
<chart>
<dataset> .... some data </dataset>
<dataset> .... some data </dataset>
</chart>
Basically its the transformed XML output. I need to use this as a string in my Javascript Code.
I am unable to do this using .toString() or whatever. Can somebody please help me here ?
Thank you.