Answers for "jquery ajax success function"

6

ajax exmaple\

$.ajax({
    url:'your url',
    type: 'POST',  // http method
    data: { myData: 'This is my data.' },  // data to submit
    success: function (data, status, xhr) { // after success your get data
        $('p').append('status: ' + status + ', data: ' + data);
    },
    error: function (jqXhr, textStatus, errorMessage) { // if any error come then 
            $('p').append('Error' + errorMessage);
    }
});
Posted by: Guest on October-17-2020
0

how to show a success message when ajax called successfully

BY LOVE,
 1- "beforeSend" event used to execute something before ajax call
 2- "complete"   event used to execute something after the ajax called successfull.
 
$.ajax({
                url: ' @Url.Action("AttendanceUpdateLate", "Attendance")',
                data: { Emp: $("#txtEmpid").val(), Status: $("#ddlAttendance").val(), day: $("#ddlday").val(), Month: $("#Month").val() },
                datatype: "json",
                type: "POST",
                contenttype: 'application/json; charset=utf-8',
                async: true,
                success: function (data) {
                    alert(data);
                },
                beforeSend: function () {
                    alert("Alert showing before AJAX call");

                },
                complete: function () {
                  alert("Alert showing after AJAX call successfully");
                    $("#txtEmpid").val('');
                    $("#ddlday").val('');
                    $("#ddlAttendance").val('');
                },
                error: function (xhr) {
                    alert('error occured');
                }
            });
Posted by: Guest on August-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language