I'm using, to show you're loading while shipping the client to the web service via php
//Tipo do método
type: "POST",
url: "../Processos/AcCadasCliente.php",
data: $('#formulario').serialize(),
beforeSend: function () {
// enquanto a função esta sendo processada,
// a mensagem "Carregando"
$('#enviar').html('.....');
},
//Quando terminado a função
success: function (txt) {
//Se deu certo, mostrar mensagem, enviado com sucesso
$('#enviar').html('.....');
},
//Em caso de erro
error: function (txt) {
$('#enviar').html('Erro');
}
It happens that even without having a connection to the web service, still, it only executes beforesend and sucess. How to invoke the ajax error