Subject: HOW CAN I USE THE HTML document object inside xsl??
From: "Vassilis Grillas" <vgrillas@xxxxxxxxx>
Date: Fri, 18 Jun 1999 18:52:51 +0300
|
|
Is there any way I can get hold of the document
object of the HTML I am creating
with XSL?
Is there any way I can get a reference to the BODY
node and then crete child elements on it?
thanks forward
<?xml
version='1.0'?> <xsl:stylesheet
xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template >
<HTML>
<BODY> <xsl:eval>do_it()</xsl:eval>
</xsl:for-each>
</BODY> </HTML>
</xsl:template>
<xsl:script
><![CDATA[ function
do_it(){
document.write("ok");
]]></xsl:script>
</xsl:stylesheet>
|
|