Subject: RE: XSL fragment within Javascript not-well formed!!!!!
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Wed, 26 May 2004 14:28:08 +0100
|
Let's get this clear.
You are writing a stylesheet.
That stylesheet, when it executes, will generate an HTML <script> element.
That script element, when the HTML page is loaded, will modify the
stylesheet that was used to generate the HTML page.
Yes?
This feels like:
http://www.insite.com.br/rodrigo/images/escher/hands.html
and is about as likely to work.
Michael Kay
> -----Original Message-----
> From: Steve Brown [mailto:stevebrown@xxxxxxxxx]
> Sent: 26 May 2004 12:32
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: XSL fragment within Javascript not-well formed!!!!!
>
> Here is my trouble...
> I would like to dynamically generate the test condition for a 'when'
> element using javascript.
> But, I can't even get the code below to work because the
> "MSXML2.FreeThreadedDOMDocument.3.0" parser expects the closing 'when'
> tag before the closing script tag.
>
> <script type="text/javascript">
> <![CDATA[document.write(']]><xsl:choose><xsl:when
> test="FName='Steve'"><![CDATA[');]]>
> </script>
>
> I would like to reference form elements in the test condition to make
> the condition dynamic if possible.
>
> Thanks,
> ~Steve
|