var person = { firstName: "Jeff" }
// Compile as named template $.template( "detailsTmpl", "<tr><td>{{=firstName}}</td></tr>" ); // Render to string var html = $.render( person, "detailsTmpl" ); // Insert as HTML $( "#details" ).html( html );