Grunt's personal blog

this is my personal blog for my hacking stuff, my degree stuff, etc

View on GitHub

Script para rellenar encuestas automaticamente SIU GUARANÍ

Disclaimer: Recomiendo completar las encuestas honestamente

Pero hay veces que uno no fue nunca a clases y aprobó de todas formas, etc.

// Get all the radio buttons
const radioButtons = document.querySelectorAll('input[type="radio", value="0"]');

// Iterate through each radio button
radioButtons.forEach(radioButton => {
    radioButton.checked = true
});