Problem with <span> tag
Hello,
I am trying to use <span> to create dynamic hovering test when mouse-overing list items. In general I get it to work when I use:
<li>
<span title="FLOATING TEXT HERE">
<xsl:value-of select="substring-after(@xsi:type, ':')"/>: <xsl:value-of select="@name"/>
</span>
</li>
The problem is that I cannot figure out how, in the title=, I can submit a node attribute, or a param or variable. Any help is greatly appreciated. Thanks
|