It works perfectly on the Chrome browser, and other browsers do not ...
When I type the login and password it displays the message "Login Done Successfully!" and the page is stopped in Mozilla.
See the code:
echo "<meta http-equiv=\"refresh\" content=\"1;URL=inicio.php\" />";
echo "Login Efetuado com Sucesso!";
$(function() {
caminho = $('.logar');
action = 'ajax/php/logar.php';
enviar = $('form[name="logar"]');
function resposta(datas) {
caminho.html(datas);
}
enviar.submit(function() {
var cadastrar = $.post(action, $(this).serialize());
cadastrar.progress(resposta('<center><i class="icon-spin1 animate-spin"></i>Carregando...</center>'));
cadastrar.done(resposta);
cadastrar.fail(function() {
resposta('Erro ao Cadastrar');
});
return false;
});
});
What am I doing wrong?