//Ingreso
$(document).ready(function() {
$("form").keypress(function(e) {
if (e.which == 13) {
return false;
}
});
$('#btnIngreso').click(function(){
event.preventDefault();
var datos=$('#formularioIngreso').serialize();
$.ajax({
type:"POST",
url:"functions/login/validar_login?noshow",
dataType: 'json',
data:datos,
success:function(data){
var string1 = JSON.stringify(data);
var respuesta = JSON.parse(string1);
console.log(respuesta);
$("#respuestaJson").html(respuesta.notificacion);
if (respuesta.notificacion != "Se inició la sesión de forma correcta") {
console.log('');
}else{
window.location=enlace;
}
}
});
});
});
¿Eres nuev@?