Handlesbars
Installation
Usage
$("document").ready(function() {
var template = $("#itemTemplate").html();
// Handlebars compiles the template into a callable function
var renderer = Handlebars.compile(template);
// call the compiled function with the template data
var result = renderer({
"item" : "Whisper 4000 in-home heater and dog walker",
"description" : "Walk your dog and heat your house at the same time? Now you can, with the Whisper 4000 Home Heating system / Dog Treadmill!",
"price" : 895.99,
"inStock" : true,
"quantity" : 100
});
$("#container").html(result);
});Each & If Else operator
Helpers
Precompilation
Last updated