this.model.save({ success: function(model, response){ console.log(\'success\'); }, error: function(){ console.log(\'error\'); } })
For those that want to save a model, without updating the attributes, you can do the following:
model.once("sync", function(model, response, options){ // }); model.once("error", function(model, response, options){ // }); model.save();