Binding A Backbone View To A Model

http://lostechies.com/derickbailey/2011/06/15/binding-a-backbone-view-to-a-model-to-enable-and-disable-a-button/

I’m learning Backbone.js and this article has helped me to get a first grasp on how to manage the separation of Views and model and how to wire them up to update each other as necessary: changes in the view will update the model which triggers the validation of the fields which in turns has to update the view.

It’s very refreshing to finally have MVC on the client side, no more crazy jQuery wires all over.