Hi,
I would like fetch one variable in javascript code like this standard
php file :
<html>
<head>
....
<script>
<!--
function myJavascriptFunction() {
foobar="<?php echo($foobar); ?>";
alert(foobar);
}
-->
</script>
...
</head>
...
</html>
How can I do it in TAL template ?
Thanks for your help.
--Stéphane