Subject: RE: xsl href url in xml
From: Américo Albuquerque <melinor@xxxxxxx>
Date: Sat, 14 Jun 2003 15:42:45 +0100
|
Hi
> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of dsk
> Sent: Saturday, June 14, 2003 1:16 PM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: xsl href url in xml
>
>
> Hi, I believe I'm trying to do something similar. There is an
> xml document with a url. How can xsl be used to format the
> url so that when clicked it responds?
>
> tia,
> dk
>
>
(...)
> <xsl:template match="link">
> <a href="javascript:window.open('{xsl:value-of
> select="docpath"/}')"><xsl:apply-templates/></a>
You don't need xsl:value-of in AVTs. Replace this line by:
<a href="javascript:window.open('{docpath}')"><xsl:apply-templates/></a>
Hope this helps you.
(...)
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|