Jun 5, 20080
PureJSTemplate - A pure javascript templating engine for jQuery
Most templating languages suck Ok, if your like me then you hate all templating langauges- they suck, they really suck. I hate them because I hate the rules they enforce upon me, they are slow, and they slow me down. Because of this, usually I end up making code that looks like this: UGLY: function display(data) { var output = "<div>" + data.text + "</div>"; ...