Skip to content

Instantly share code, notes, and snippets.

@naeluh
Created November 18, 2016 00:41
Show Gist options
  • Save naeluh/30d17ab48ebcc89690520fe46ae55974 to your computer and use it in GitHub Desktop.
Save naeluh/30d17ab48ebcc89690520fe46ae55974 to your computer and use it in GitHub Desktop.
var inputs = document.getElementsByTagName("input");
for(var i = 0; i < inputs.length; i++) {
if(inputs[i].type == "checkbox") {
inputs[i].checked = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment