Skip to content

Instantly share code, notes, and snippets.

@mariovalney
Created April 10, 2019 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariovalney/15d093347a3882a1c05f65f55d3e9b83 to your computer and use it in GitHub Desktop.
Save mariovalney/15d093347a3882a1c05f65f55d3e9b83 to your computer and use it in GitHub Desktop.
Marcar todas respostas como "Ótimo" nas Avaliações de Docente da Unifametro.
// 1 - Ótimo / 5 - Péssimo
var checkboxes = $$('[value="1"]');
for (var i = 0; i < checkboxes.length; i++) {
checkboxes[i].checked = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment