Pronósticos Fecha 1 – Liga Mayor 2025
Tu sobrenombre:
Enviar pronóstico
document.getElementById(‘pencaForm’).addEventListener(‘submit’, function(e) {
e.preventDefault();
const form = e.target;
const data = new FormData(form);
fetch(«https://script.google.com/macros/s/AKfycbwPx1EXdwLw9MijApHPab3ukmiJE14_6D-BeDXAaZ769W57hLxqid_3J5QA9fMAHD6x/exec», {
method: «POST»,
body: data
})
.then(res => res.text())
.then(txt => {
document.getElementById(«respuesta»).innerText = «Pronóstico enviado correctamente!»;
form.reset();
})
.catch(err => {
document.getElementById(«respuesta»).innerText = «Error al enviar el pronóstico.»;
console.error(err);
});
});