| name | age | message | |
|---|---|---|---|
| |
README.md | Thu Mar 04 20:05:07 -0800 2010 | |
| |
demo.html | Wed Mar 31 12:48:19 -0700 2010 | |
| |
jquery.tmpl.js | Wed Mar 31 18:29:02 -0700 2010 |
README.md
A jQuery templating plugin - created for demonstration purposes.
$("#sometmpl")
.render( dataObject ) // Returns a LI with all the data filled in
.appendTo("ul");
$("#sometmpl")
.render( arrayOfDataObjects ) // Returns multiple LIs with data filled in
.appendTo("ul");
// Appends one LI, filled with data, into the UL
$("ul").append( tmpl, dataObject );
// Appends multiple LI, filled with data, into the UL
$("ul").append( tmpl, arrayOfDataObjects );
