This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: JavaScript problems in my XSL file


besides using < you could write your entire javascript inside a CDATA 
section:

<![CDATE[
for (i=0; i<6; i++)
]]>

if you need to insert information from your source xml file just close the 
cdata section and open it again afterwards:

<![CDATE[
for (i=0; i<6; i++)
]]>
<xsl:value-of select="someTag"/>
<![CDATE[
more script...
]]>


Perry


>From: "Ken Dickerson" <kdicke@atl.com>
>Reply-To: xsl-list@mulberrytech.com
>To: <XSL-List@mulberrytech.com>
>Subject: JavaScript problems in my XSL file
>Date: Fri, 3 Nov 2000 17:02:59 -0400 (EST)
>
>I have an XSL file that I use to display my XML data. The XSL file contains
>some JavaScript. I have not been having troubles using JavaScript within 
>the
>XML file until I added a for loop. The for loop loops like: for (i=0; i<6;
>i++)... When I try to load my pages, I get an error at the 6. I believe the
>error is that XSL is trying to create a tag from the lessthan sign. How can
>I get XSL to understand that this is code and not some tagging? I am using
>the namespace "http://www.w3.org/1999/XSL/Transform". I have defined my
>script block with LANGUAGE="JavaScript" inside the HEAD block which is
>inside the <xsl:template match="/"> block.
>
>I have gotten it to work when I replace the < sign with &lt; which is 
>pretty
>ugly!
>
>TIA,
>- Ken < ><
>(email: Ken.Dickerson@philips.com)
>
>
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]