1
have a POST inside a javascript function and this post returns a response function the problem and that the IF in the response function is not working
<script>
$(document).ready(function(){
$("#mlogin" ).click(function() {
$("#modallogin").modal({ // wire up the actual modal functionality and show the dialog
"backdrop" : "static",
"keyboard" : false,
"show" : true // ensure the modal is shown immediately
});
});
$("#btncancel" ).click(function() {
$("#modallogin").modal("hide");
$("#msg_login").html("");
});
$("#btnok" ).click(function() {
var usuario = $('#usuario').val();
var senha = $('#senha').val();
var acao= "login";
var startaction=1;
$.post('controllers/clogin.php', {usuario:usuario , senha:senha, acao:acao, startaction:startaction}, function(resposta) {//enviamos o parametro nome, com o valor da variavel nome criada acima
//location.reload();
$('#usuario').val(""), $('#senha').val(""), acao="", startaction=0;
$("#msg_login").html(resposta);
// O if abaixo não está funcionando
if (resposta=="Você foi logado com sucesso"){
$("#modallogin").modal("hide");
$("#msg_login").html("");
}
});
});
});
</script>
Not working or not running? Have you checked if the value in
resposta
is exactly "You have been successfully logged in"?– André Ribeiro