javascript - Jquery Ajax Call, doesnt call Success or Error -


 $.ajax({      url: url,      type: 'post',      context: context,                      data: data,      success: function (result) {          callback();      },      error: function (xhr, textstatus, error) {          alert("error")      },      complete: function (jqxhr, status) {          alert("completion callback.");      },   }); 

it call service method & returned controller. calls compete callback.


Comments

Popular posts from this blog

SVG stroke-linecap doesn't work for circles in Firefox? -

routes - Laravel 4 Wildcard Routing to Different Controllers -

cross browser - XSLT namespace-alias Not Working in Firefox or Chrome -