I am using a JQuery in an MVC appliaction post that is erroring out, is there someway to tell what the error is?
Example code -
$.post("/Path/Action", form, function (returnHtml) {
//do stuff
}).error(function () { alert("error"); });
I have attached the ".error" call but that doesn't tell me the cause of the error. Thanks!