I want the string that is created in the page to be used in the javascript, so i can use the same script multiple times with a small change of the string.
Afaik there is no way to do it directly like in your example, since velocity is run when rendering the page, and javascript is client-side.
Two solutions I can think of:
Either making a velocity macro which inserts a <script>alert($String)</script> somewhere in the page, although you’ll have to be careful with escaping;
Somehow add the variable in the html from velocity and recover it from javascript. This might be more modular, since you have JS and velocity separate, but you’ll have to remember to insert the right element. Again, you should be careful with escapes. Example:
{{velocity}}
#set ($String = "Hello!")
## Use the html macro to insert the html, and not render it as plain text:
{{html}}
<span id="my-velocity-script-variable-storage" data-string-variable="$escapetool.html($String)" style="display:none;"></span>
{{/html}}
{{/velocity}}
<script>
// Your js script, in another file:
var String = document.getElementById("my-velocity-script-variable-storage").getAttribute("data-string-variable");
alert(String);
</script>
Thank you, that helps a lot.
I didn’t see that part in the documentation.
I just can’t figure out how to use the $request.(Parameter name) in javascript.