Bhavya Sharma wrote:
hi devs
i want to know that how can i access xsl variable in javascript ,

i assume you mean javascript on the client, not in a flowscript.

you can do this:

<xsl:template match="<whatever>">
   <script type="text/javascript">
       yourJavascriptVar = <xsl:value-of select="$yourXSLVar"/>;
   </script>
</xsl:template>


hth,

jörn


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to