Skip to content

Instantly share code, notes, and snippets.

@htom78
Forked from xero/ajaxBackboneHandlebars.js
Last active August 29, 2015 14:06
Show Gist options
  • Save htom78/72df2d4c9b0c59595d14 to your computer and use it in GitHub Desktop.
Save htom78/72df2d4c9b0c59595d14 to your computer and use it in GitHub Desktop.
$.ajax({
url: 'ui/tpl/login.handlebars',
context: this,
cache: true,
success: function(data) {
var tpl = Handlebars.compile(data);
this.$el.html(tpl(this.model.toJSON()));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment