This article briefly discusses how the Backbone.View class is normally used and then introduces a new class that helps makes it easy to synchronize your models and views.
The Backbone.View class helps you do a couple of important things that I’ll discuss in very brief detail: (I assume that you are already familiar with Backbone.Views)
- Create browser DOM elements
- Listen to DOM element events
- Listen to model events
Create browser DOM elements:
Backbone.View objects have a… Read the rest
