-
Recent Posts
Recent Comments
Archives
- November 2013
- October 2013
- August 2013
- July 2013
- June 2013
- March 2013
- January 2013
- December 2012
- November 2012
- October 2012
- June 2012
- January 2012
- April 2011
- March 2011
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- April 2008
- March 2008
Categories
Meta
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 Binding, collection, event, Model
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