Snippet shows you how to catch errors like 404 when you submit form using jQuery.
Source code viewer
e.preventDefault();
// Pre-request code, like showing loader...
// Successful request.
// For an example, show success message.
})
// An error occurred during the request.
.fail(function() {
// For an example, show error.
})
// This method is always executed.
.always(function() {
// For an example, remove loader.
});
});Programming Language: jQuery