I need to get javascript to recognize a vbscript variable and it's currently not working for me within an HTA application.
<script type="vbscript">
Dim variable
variable = test
</script>
<script type="text/javascript">
var variable = <%= variable%>;
</script>
The code above doesn't carry the original vbscript variable over. I've also tried
var variable = '<%= variable %>';
However this just populates the value within the quotes into the javscript variable
Any help would be appreciated. Thank you.