xsl-list
[Top] [All Lists]

Re: Creating Hyperlinks using xlink

2003-07-09 06:51:44
Hi Rudi,

For example this line from my 'address' xsl:template,
<a href="{xlink:simple/@href}"><xsl:value-of select="."/></a>,
in the rendered html document the {xlink:simple/@href} is blank but the
<xsl:value-of select="."/> is fine.

The value you want for the href attribute is the value of the
xlink:href attribute on the current <address> element. Currently
you're selecting the href attribute of an <xlink:simple> element,
which doesn't exist. Try:

  <a href="{(_at_)xlink:href}"><xsl:value-of select="." /></a>

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


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



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