Skip to content

Instantly share code, notes, and snippets.

@romuloccomp
Created December 23, 2011 17:36
Show Gist options
  • Save romuloccomp/1514871 to your computer and use it in GitHub Desktop.
Save romuloccomp/1514871 to your computer and use it in GitHub Desktop.
Sample js Handlebars
var source = $("#some-template").html();
var template = Handlebars.compile(source);
var data = { users: [
{username: "alan", firstName: "Alan", lastName: "Johnson", email: "[email protected]" },
{username: "allison", firstName: "Allison", lastName: "House", email: "[email protected]" },
{username: "ryan", firstName: "Ryan", lastName: "Carson", email: "[email protected]" }
]};
$("#content-placeholder").html(template(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment