Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
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
What about type="text/tcl" which I saw in the W3C doc? How to use it? (Should I ask another question?) – L01man Jun 11 '12 at 14:11
@L01man yes, you should ask another question. – Nate Glenn Feb 17 at 22:05

5 Answers

up vote 107 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.

share|improve this answer
1  
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
3  
@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
2  
hi, different Matt here. Would <script type="text/template"> pass an html verification test? – Matt Apr 5 '12 at 22:16
2  
nevermind, I found on icanhazjs.com that it's valid – Matt Apr 5 '12 at 22:24
show 2 more comments

It's legit and very handy!

Try this:

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

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.

share|improve this answer

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>
share|improve this answer
It is different, a textarea will still insert those elements into the DOM and fetch any external assets (like images) requested. A script tag will not. – LocalPCGuy May 13 at 22:09

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/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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