eaiovnaovbqoebvqoeavibavo function enviar_notificacion(){ var formData= new FormData(document.getElementById('formNotificacion')); $('#loading-screen').css('display','block'); $.ajax({ type: "POST", url: "https://juliojodi.com/CEGSystem/Insertar/notificacion", data: formData, cache: false, contentType: false, processData: false }).done(function(response){ var mensaje =JSON.parse(response); //console.log(mensaje); $('#loading-screen').css('display','none'); swal({ icon: 'success', title: 'Atención', text: '¡Se ha registrado correctamente!', }).then(function () { window.location.href='https://juliojodi.com/CEGSystem/Page/notificacion'; }); }); }