I have the following construct, which obviously is just HTML:
<script type="text/html" id="abc">
//... some text
</script>
Now I want to put some JavaScript into it. So it would look like:
<script type="text/html" id="abc">
//...
<script type="text/javascript">
alert("Hello!");
</script>
//...
</script>
Of course, it won't work, as I would close the script-tag, before the whole code block ends.
So, is there a proper way to embed JavaScript into my script-block?