I have some Backbone.js code that bind a click event to a button, and I want to unbind it after clicked, the code sample as below:
var AppView = Backbone.Vie
There is an even easier way, assuming you want to undelegate all events:
this.undelegateEvents();