Skip to content

Instantly share code, notes, and snippets.

@saiberz
Created November 28, 2014 12:48
Show Gist options
  • Save saiberz/ce92697249a81c30ffd5 to your computer and use it in GitHub Desktop.
Save saiberz/ce92697249a81c30ffd5 to your computer and use it in GitHub Desktop.
Rellenar encuesta
(function(){
var inputElements = document.getElementsByTagName("input");
for (var i=inputElements.length-1; i>=0; i--) {
if (inputElements[i].getAttribute('type') == 'radio') {
inputElements[i].checked = true;
}
}
})();
document.getElementsByTagName("button")[1].click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment