Handlebars process
examples/handlebars/handlebars_process.js
$(document).ready(function() { var source = $('#text-template').html(); var template = Handlebars.compile(source); var html = template(data); $('#text').html(html); });
$(document).ready(function() { var source = $('#text-template').html(); var template = Handlebars.compile(source); var html = template(data); $('#text').html(html); });