Javascript - Find ajax error in jquery, Get the ajax error code

Find ajax error in jquery

How to find ajax response error message or error code in jquery. At time you might want to find what is the error code return by ajax, in such situation you can use the below code

$.ajax({
type: 'POST',
url: 'Your url here',
data: "email="+email,
success: function(data) 
{ 
$('#res').html(data); 
},
error: function(xhr, status, error) {
alert("\nError: " + error);
}
});

The topic on Javascript - Find ajax error in jquery is posted by - Math

Hope you have enjoyed, Javascript - Find ajax error in jqueryThanks for your time

Tech Bluff