P
postings
Hi
Currently I have some RSS displayed using this stylesheet:
----------------------------------------------------------------
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xslutput method="html" />
<xsl:template match="/">
<ul>
<xsl:for-each select="rss/channel/item">
<li><a href="{link}"><xsl:value-of select="title" /></a></li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
----------------------------------------------------------------
Does anybody know how I could alter the code so that when the user
clicks on the link, it opens in a new browser window?
Many thanks
Alex
Currently I have some RSS displayed using this stylesheet:
----------------------------------------------------------------
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xslutput method="html" />
<xsl:template match="/">
<ul>
<xsl:for-each select="rss/channel/item">
<li><a href="{link}"><xsl:value-of select="title" /></a></li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
----------------------------------------------------------------
Does anybody know how I could alter the code so that when the user
clicks on the link, it opens in a new browser window?
Many thanks
Alex