This question is about Netscape 6.2
How do we use Data islands ie. XSL processed HTML output embedded in HTML
file in Netscape.
We can do the same on IE as following
----------------------------------------------------------------------
<HTML>
<HEAD>
<XML id="source" src="search.xml"></XML>
<XML id="style" src="search.xsl"></XML>
and then use javascript
xslTarget.innerHTML = source.transformNode(style.XMLDocument);
and then display HTML using
<DIV id="xslTarget"></DIV>
--------------------------------------------------------------------
Example for Data Islands on MSDN:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk/htm/
xsl_domprocess_3xx1.asp?frame=true
Can this be done in Netscape ? How ? I want to client side transformation
with XML, XSL files, javascript and browser (Netscape)
Thanks
Gururaj
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|