Skip to content

Instantly share code, notes, and snippets.

@HiroAgustin
Created November 11, 2013 23:22
Show Gist options
  • Save HiroAgustin/7422435 to your computer and use it in GitHub Desktop.
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.
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