I'm looking for a reliable jQuery templating engine.

I've been developing with jquery.tmpl.js, even though I knew it was abandoned. I've been able to achieve what I wanted with it but have some slight doubts about its cross-browser reliability.

For one thing, IE7 seems to be flagged up as a problem area, and I now don't want to go much further until I feel more confident that it can eventually be incorporated into a production solution.

There's healthy discussion on this StackOverflow question about templating, though sadly this is now out-dated.

The github repository for jquery.tmpl.js says that it's been moved to jQueryUI, but the jQueryUI site makes no mention of templating.

So does anyone have any good experience with templating in jQuery and/or can point me towards a reliable solution?

link|improve this question

59% accept rate
Who said tmpl was abandoned? – AlienWebguy Nov 1 '11 at 21:42
api.jquery.com/category/plugins/templates (Read the Note:) – Andrew Whitaker Nov 1 '11 at 22:07
I have no experience with them but possibly something good on microjs.com/#templating – Steve Claridge Nov 1 '11 at 23:16
2  
Looks like the tmpl author's working on the next alternative: JsRender. Use view source to see the rendering code. It looks the same as tmpl. His reasons for the change are here: borismoore.com/2011/10/…. – hyperslug Nov 1 '11 at 23:43
feedback

3 Answers

up vote 7 down vote accepted

JsRender is the replacement for jQuery Templates. jQuery Templates are no longer in development ... both jQuery and Boris Moore (driving force behind them) moved on to JsRender.

However, you can use jQuery templates because as of today, they are more stable than JsRender is. JsRender and JsViews is quickly coming and together they will do what jQuery templates does now. JsRender is has some advantages already over jQuery templates especially in terms of performance (its string based rendering engine does that).

You can find several examples by Boris Moore here: http://borismoore.github.com/jsrender/demos/step-by-step/index.html

link|improve this answer
how do you compare jsRender vs DustJs ? – pyccki Apr 18 at 14:24
feedback

Linkedin uses Dust. They wrote a decent article explaining how it helped them create a common UI from disparate back-end implementation approaches (JSP, Grails, Rails, etc.) It might be worth looking into.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.