Hello all

I want to get this into my output document:

<a  onMouseOver=" simpleMouseOver( ' id_a ' ) " >

I thought I could do it like this:

<a>
<xsl:attribute name="href">#</xsl:attribute>
<xsl:attribute name="onMouseOver"> simpleMouseOver 
<xsl:text disable-output-escaping="yes">( ' </xsl:text>
<xsl:apply-templates mode="getDivId" select="info" /> 
<xsl:text disable-output-escaping="yes"> ') </xsl:text>
</xsl:attribute>
.....

But what I get is:

<a href="#" onMouseOver="simpleMouseOver ( &apos; id_a &apos; ) 
......

Any idea what I'm doing wrong? 

Thanks in advance.

John


Reply via email to