71104 / jquery-handlebars

A jQuery plugin to render Handlebars.js templates into elements
http://71104.github.io/jquery-handlebars
MIT License
100 stars 39 forks source link

Add Inline Template and Precompiling Templates Support #9

Closed marshalys closed 1 year ago

marshalys commented 10 years ago

Add inline template support. To use it like this:

<script id="test" type="text/html">
    <div>{{ title }}-{{ name }}</div>
</script>
$("#version").render("#test", {title: 'version', name: '0.0.1'});