I created an XSLT file that goes through a SharePoint list to create a resource table. One part of it creates a link that leaves the site. I want to open it in a new window with target = "_ blank", but I'm not sure how to do this in XSLT.
Here is the part that creates the link:
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="Website"/>
</xsl:attribute>
<xsl:text>Visit Website</xsl:text>
</xsl:element>
Can anyone shed some light on this for me? I am new to XSLT.
source
share