If you are binding to a Collection such as this.collection.bind(“click”, this.callback) then the context of the ‘this’ in the callback function is the “collection’s context”. Using this.collection.bind(“click”, this.callback, this) will give it the context of the view in which the binding is happening.
Joey from backbonescreencasts.com (Thanks Joey!)