//Ingreso
$(document).ready(function() {
$('#formularioRegistro').on('submit',function(e){
e.preventDefault();
bloquearPagina();
var datos=$('#formularioRegistro').serialize();
$.ajax({
type:"POST",
url:"/functions/registro/registrar_usuario?noshow",
dataType: 'json',
data:datos,
success:function(data){
var string1 = JSON.stringify(data);
var respuesta = JSON.parse(string1);
console.log(respuesta);
if(respuesta.resultado){
window.location=enlace;
}else{
addToast('Error',respuesta.notificacion,'error');
desbloquearPagina();
}
},
error:function(data){
console.log(data);
desbloquearPagina();
}
});
});
});
¿Eres nuev@?