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