Explanation of <script type = "text/template"> ... </script> Explanation of <script type = "text/template"> ... </script> javascript javascript

Explanation of <script type = "text/template"> ... </script>


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,Google Closure template, 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.


It's legit and very handy!

Try this:

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

Several Javascript templating libraries use this technique. Handlebars.js is a good example.


By setting script tag type other than text/javascript, browser will not execute the internal code of script tag. This is called micro template. This concept is widely used in Single page application(aka SPA).

<script type="text/template">I am a Micro template.   I am going to make your web page faster.</script>

For micro template, type of the script tag is text/template. It is very well explained by Jquery creator John Resig http://ejohn.org/blog/javascript-micro-templating/