RE: [xsl] Javascript in XHTML output

Subject: RE: [xsl] Javascript in XHTML output
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Thu, 2 Jan 2003 16:21:26 -0000
Use the xsl:comment instruction to produce a comment in the output.

If you really want to copy comment nodes from the source to the result
you can use:

<xsl:template match="comment()">
  <xsl:copy/>
</xsl:template>

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx 

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> Chris Bowditch
> Sent: 02 January 2003 15:01
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Javascript in XHTML output
> 
> 
> Hi all,
> 
> I'm trying to generate XHTML that contains Java Script. I 
> have tried using 
> <![CDATA[ blah blah ]]> to enclose the Java Script
> This works but means the results of the transform are HTML 
> rather than well 
> formed XHTML.
> 
> If I could get comments in the style sheet to be passed to 
> the output then 
> placing the Java script inside the comment would give the 
> desired result. 
> e.g.
> 
> <!--
> 
> java code
> blah blah
> 
> -->
> 
> Unfortunately, comments in the style sheet seem to be 
> ignored. I'm using 
> Xalan v2.4.1
> 
> Does any one else have any ideas on how to solve this problem?
> 
> Thanks,
> 
> Chris
> 
> 
> 
> 
> 
> _________________________________________________________________
> The new MSN 8 is here: Try it free* for 2 months 
> http://join.msn.com/?page=dept/dialup
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread