<script id="personTmpl" type="text/x-jquery-tmpl"> <tr> <td>{{=firstName}}</td> </tr> </script> <table><tbody id="details"></tbody></table>
var person = { firstName: "Jeff" }
// Render to string var html = $( "#personTmpl" ).render( person ); // Insert as HTML $( "#details" ).html( html );