Using Handlebars Templates

By Forrest Smith - Drempd.com

 It generally takes me a few minutes to tease out the right code on the handlebars page to get everything to work, here is the essential code for setting up a handlebars template via javascript:

Template Code (Html):


Javascript Code:

var 
  data = {title: "Test Title", body: "Test Body"},
  source = $("#test-template").html(),
  template = Handlebars.compile(source),
  html = template(data);