xsl-list
[Top] [All Lists]

Re: How to pass on xml information to javascript in XSL

2002-10-17 17:30:37
Attribute Value Templates {}:

<input type="button" value="Add To Cart" onClick="addcart('{name}',7,10)"/>

or xsl:attribute:

<input type="button" value="Add To Cart">
  <xsl:attribute name="onClick">
    <xsl:text>addcart('</xsl:text>
    <xsl:value-of select="name"/>
    <xsl:text>',7,10)</xsl:text>
  </xsl:attribute>
</input>

I prefer the first version.

Regards,

Joerg

aSad Khan wrote:
Hi!

I know this is how you extract XML information in XSLT:

...
Name: <xsl:value-of select="name"/><br/>
...

Now I have something like this:

   <form>
<input type="button" value="Add To Cart" onClick="addcart('name',7,10)"/>
   </form>

But this send the literal string name to the function. How do I send the value of name instead? I can't find the syntax anywhere. Please help. Thanks.

_________________________________________________________________
Unlimited Internet access -- and 2 months free! Try MSN. http://resourcecenter.msn.com/access/plans/2monthsfree.asp


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




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



<Prev in Thread] Current Thread [Next in Thread>