I save a backbone model, the save is successful. However the success or the error function dont seem to be getting called. Here is what I have tried :
that.model.save(null,{
success:function(model, response){
console.log("save successful");
},
error: function(model, response){
console.log("save error");
}
});