Backgroud:

I have this template that includes videos from youtube being loaded with swfobject.

Question:

Is there a way to include a script tag...

<script type="text/javascript">
</script>

inside a jQuery Template??

<script id="filaVideoTemplate" type="text/x-jQuery-tmpl">
    <!-- Some HTML here -->
    <script type="text/javascript">
        <!-- Some javascript here -->
    </script>
</script>

Obviously it doesn't work directly, is there any way to achive the same thing without the script inside other script?

link|improve this question

feedback

2 Answers

<script id="filaVideoTemplate" type="text/x-jQuery-tmpl">
    <!-- Some HTML here -->
    <script type="text/javascript">
        <!-- Some javascript here -->
    {{html "</sc"+"ript>"}}
</script>

You can use {{html "</sc"+"ript>"}} replace </script>

link|improve this answer
feedback

Not sure if this is the only way, but you can insert the script as raw HTML for the template:

<script id="filaVideoTemplate" type="text/x-jQuery-tmpl">
    <!-- Some HTML here -->
    {{html innerScript}}
</script>

Then:

var innerScript = '<script type="text/javascript"><!-- Some javascript here --></script>';
$('#filaVideoTemplate').tmpl({innerScript: innerScript});
link|improve this answer
Good one but the script is not trivial, and I don't want to have the script as a variable, that is exactly why I am using templates in the first place – Carlos Muñoz Jan 25 '11 at 0:17
@Carlos, yeah it is sidestepping the whole template engine essentially. Why don't you have the script as an external JS file though? – Box9 Jan 25 '11 at 0:18
Beacuse the script is diferent for every item in the template, it is generated dinamically from the result of a json call. – Carlos Muñoz Jan 25 '11 at 0:30
@Carlos, it sounds like a bad idea to template javascript. If it's javascript, why can't you pass the json data as an argument? – Box9 Jan 25 '11 at 0:32
2  
@Carlos You're probably not taking the right approach. Keep your code outside of your templates, wrapped in functions, that take as arguments the variables you think you need within those script templates. You should end up with something simpler, faster and cleaner. – Metal Jan 25 '11 at 0:34
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.