MVC Form
@using(Html.BeginForm("Student", "Manage", FormMethod.Post, new { id = "studentForm" }))
Jquery
$("#studentForm").submit(function (e) {
// showing loading spinner here
});
Here how to show and hide the loading spinner? Is there any success and failure callbacks for the above jquery submit event. Please advice. Thanks!