Reputation: 43
Now that jquery templates are discontinuing and jsrender and jsview are still in beta, what are the good options for rendering data retrieved by jquery ajax?
Upvotes: 0
Views: 128
Reputation: 83366
KnockoutJS is incredible.
It supports a template system based on the older jQuery template syntax.
It also supports the MVVM pattern by allowing you to create a JavaScript ViewModel using the Knockout observables, and dependentObservable functions which can be two-way bound to dom elements.
Upvotes: 1