Introducing Templates for jQuery
In the first of three new libraries created by Microsoft and accepted by jQuery as official plugins, the jQuery Templates API allows for the dynamic creation of HTML Elements from data objects. Like server-side templating languages such as ASP or VB’s XML Literals, one merely has to leave holes with data-binding expressions that indicate what should be displayed.
Basic data binding is done using the syntax ${fieldName}. For example:
<script id="bookTemplate" type="text/x-jquery-tmpl">
<li><b>${Name}</b> (${Year})</li>
</script>
To use a template, simply define the target location and execute the template using the “tmpl” method.
<ul id="bookList"></ul>
$( "#bookTemplate" ).tmpl( books ).appendTo( "#bookList" );
Using this syntax, the template is compiled as a JavaScript function. Compiled templates can also be created form strings using jQuery.template function. Templates created in this fashion can be named, which stores them in the $.templates list, or simply returned as an object.
For single-use templates, the overhead of compiling them is often not worth the cost. In these situations you can pass the template definition as a string directly to the template execution function, jQuery.tmpl.
The jQuery Template API requires jQuery 1.4.2. It is licensed under both the MIT and GPL Version 2 licenses.
Educational Content
Writing Usable APIs in Practice
Giovanni Asproni May 19, 2013
Concurrency in Clojure
Stuart Halloway May 17, 2013
Confessions of an Agile Addict
Ole Friis Østergaard May 16, 2013





Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think