Hi there,
I'm having problem with passing the xsl:variable i declared inside a xslt to an html input text box.
Here's my code:
<input id="theTextBox" name="theTextBox" />
XSLT:
<
xsl:variable name="test
" select="test
"/>
<div>
<a onclick="document.getElementById('theTextBox').value={$test};getValue();" href="Click'>mailto:{$test}@yahoo.com">Click Here</a>
</div>
On onclick, I call a javascript function to manipulate the value of textbox. Is this the correct syntax for passing variable???
Will appreciate your solutions/suggestions...
Thanks...
- Dencio