eaiovnaovbqoebvqoeavibavo function enviar_curso() { var formData = new FormData(document.getElementById("formCursoAux")); $("#loading-screen").css("display", "block"); $.ajax({ type: "POST", url: "https://juliojodi.com/CEGSystem/Curso/agregarCurso/", data: formData, cache: false, contentType: false, processData: false, }).done(function (response) { //var mensaje =JSON.parse(response); console.log(response); $("#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/agregar_curso_extra"; }); }); }