Reputation: 942
The current codebase I'm working with is very tied to Prototype+scriptaculous. When I look at software like Backbone or Knockout I commonly see dependencies on jquery+underscore, which seem to conflict with what I've got. What options have I got? I'm mostly after something like Knockout, but I guess two-way databinding would suffice.
Upvotes: 0
Views: 734
Reputation: 2288
Take a look at Lava JS. It provides rich two way databinding and does not appear to have any dependencies. http://lava.codeplex.com
Upvotes: 0
Reputation: 7838
Check out Angular's scope objects. It great for two-way databinding. See more detail at Most useful techniques for two way data binding with js.
Upvotes: 1