create an url (XSL)

webmasterbeta

New Member
I have this javascript function for a dynamic menu. i pass to it the month and year and others...

function dropdownmenu(obj, e, menucontents, menuwidth, idutente, meseanno){
<xsl:for-each select="//MENU/DIPENDENTE/MAS">
<xsl:variable name="po"><xsl:value-of select="position()"/></xsl:variable>
var url_<xsl:value-of select="$po"/> = <![CDATA["<a href='http://www.webdeveloper.com/forum/archive/index.php/HTMLWrapper?act=compilaStatino&xsl=leggistatino&id_ute='+ idutente+ '&meseanno=' + meseanno>MODIFICA</a>";]]>
menu_<xsl:value-of select="$po"/> [0]=url_<xsl:value-of select="$po"/>;
menu_<xsl:value-of select="$po"/> [1]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.google.it" >VISIONA</a>'

</xsl:for-each>

i want that id_ute=idutente that ihave passed to the function. How can i made it?

thanks


}
 
Back
Top