-
type: "text/x-handlebars-template"
-
id : define id
<script id="entry-template" type="text/x-handlebars-template"> </script>
var source = $("#entry-template").html();
var template = Handlebars.compile(source);
data = {title:"This is title", body:"this is body content"};
console.info(template(data));
<h2>By {{fullName author}}</h2>
Handlebars.registerHelper('fullName', function(person) {
return person.firstName + " " + person.lastName;
});