this.model.save({ success: function(model, response){ console.log(\'success\'); }, error: function(){ console.log(\'error\'); } })
The following is the code that i am using for backbone model save.
this.model.save(model,{ success:function(model){ console.log("Saved Successfully"); }, error:function(model){ console.log("Error"); } });
Cheers
Roy M J