Using xslt i want to create an attribute:
<span class="tooltip">
<xsl:attribute name="onmouseover">
<xsl:text>javascript:function(</xsl:text>
<span class="label">Aggiunta</span>
<xsl:apply-tempaltes/>
<xsl:text>)</xsl:text>
</xsl:attribute>
The problem is that only the pure text is putted inside the attribute, like
<span class="tooltip" onmouseover="javascript:function(Aggiunta ...)">
whithout the span tags or the tags that may come from apply-templates.
So how can I put html code into an attribute?