I'm generating some simple XML via javascript, and then using doc.open, doc.write, and doc.close to write the xml into an iframe.
My problem is that in the iframe, it is not being rendered properly. It's as if the xslt renderer is not kicking into gear and it tries to render as html(just showing the text node values).
The xml itself is proper and when pasted in an xml file and loaded, renders properly with the xslt.
Is it a matter of somehow telling the browser what data type the generated xml is (and how would i do that?) or is there a way to kick it into xslt rendering mode?