custom BackboneJS events(increment and Decrement) not working
问题 I am having a counter(No. of products) that I want to manipulate using backboneJS custom events. If I click Add Product then No. of products should increase by and if I click Remove Product then No. of products should decrease by one.Demo here The problem is, value of counter is not getting updated when i click buttons. here is code snippet var Counter = Backbone.Model.extend({ defaults: { value: 10 }, // model methods increment: function() { this.set({value: this.get('value')+1}); },