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