hello, My main xsl has a html input field whose value i want to assign to a xsl variable
(this is parent page and a pop up which opened from this had set a value for this input field in this parent)
i want to use this variable as a counter for some logic inside xsl.
i tried if javascript could help and tried this
Code:
<xsl:value-of select="js:getCodeCount()*"/>
but looks like xsl doesnt have anything like accessing javascript to assign to a variable.
Please help.