I just stumbled upon something I've never seen before. In the source of Backbone.js's example TODO application (Backbone TODO Example) they had their templates inside a <script type = "text/template"></script>, which contained code that looks like something out of PHP but with JavaScript tags.

Can someone explain this to me? Is this legit?

link|improve this question

71% accept rate
Great question and answer. I just ran across this trick in the new YUI App Framework code: new.yuilibrary.com/yui/docs/app/app-todo.html – mjhm Aug 18 '11 at 20:53
feedback

5 Answers

up vote 39 down vote accepted

Those script tags are a common way to implement templating functionality (like in PHP) but on the client side.

By setting the type to "text/template", it's not a script that the browser can understand, and so the browser will simply ignore it. This allows you to put anything in there, which can then be extracted later and used by a templating library to generate HTML snippets.

Backbone doesn't force you to use any particular templating library - there are quite a few out there: Mustache, Haml, Eco, and so on (the one used in the example you linked to is underscore.js). These will use their own syntax for you to write within those script tags.

link|improve this answer
Thanks for your response. So this is a cross-browser solution to having the browser's ignore this code? – Matt Feb 6 '11 at 9:58
1  
@Matt, exactly that. At the same time it's easy to retrieve the full text again using .innerHTML, hence it's common practice now among templating engines. – Box9 Feb 6 '11 at 10:01
1  
Well isn't that just fantastic news! I've been looking for a solution like this.. Thanks for your response and follow-up! – Matt Feb 6 '11 at 10:03
1  
hi, different Matt here. Would <script type="text/template"> pass an html verification test? – Matt Apr 5 at 22:16
nevermind, I found on icanhazjs.com that it's valid – Matt Apr 5 at 22:24
feedback

To add to Box9's answer:

Backbone.js is dependent on underscore.js, which itself implements John Resig's original microtemplates.

If you decide to use Backbone.js with Rails, be sure to check out the Jammit gem. It provides a very clean way to manage asset packaging for templates. http://documentcloud.github.com/jammit/#jst

By default Jammit also uses JResig's microtemplates, but it also allows you to replace the templating engine.

link|improve this answer
feedback

It's a way of adding text to HTML without it being rendered or normalized.

It's no different than adding it like:

 <textarea style="display:none"><span>{{name}}</span></textarea>
link|improve this answer
feedback

It's legit and very handy!

Try this:

<script id="hello" type="text/template">
  Hello world
</script>
<script>
  alert($('#hello').html());
</script>
link|improve this answer
feedback

jQuery Templates is an example of something that uses this method to store HTML that will not be rendered directly (that’s the whole point) inside other HTML: http://api.jquery.com/jQuery.template/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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