Tag Archives: event

Re-Learning Backbone.js – Collections

Backbone.js collections are used to store and manage a group of similar or related objects. If all we wanted to do was store related objects we could use a JavaScript array, but Backbone.js Collection provides an infrastructure that allows us … Continue reading

Posted in Backbone.js, JavaScript, Uncategorized | Tagged , , , | Leave a comment

Re-Learning Backbone.js – View Events

It is common for Backbone.js views to include elements that the user can interact with. For example, the user can enter text in a text box, hover over a div, or click a button. These types of interaction can trigger … Continue reading

Posted in Backbone.js, JavaScript, Tutorial | Tagged , , | 2 Comments