Created
November 11, 2013 23:22
-
-
Save HiroAgustin/7422435 to your computer and use it in GitHub Desktop.
Script para poner "No Contesta" en todos los campos de la evaluación de estudiante de la ORT.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.forEach.call(document.querySelectorAll('td:last-child>input[type="radio"]'), function (input) { | |
input.setAttribute('checked'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment