Skip to content

Instantly share code, notes, and snippets.

@SAFAD
Created July 27, 2014 13:26
Show Gist options
  • Save SAFAD/96a17c4e13e822c3bbf9 to your computer and use it in GitHub Desktop.
Save SAFAD/96a17c4e13e822c3bbf9 to your computer and use it in GitHub Desktop.
tick all checkboxes
var inputs = document.querySelectorAll("input[type='checkbox']");
for(var i = 0; i < inputs.length; i++) {
inputs[i].checked = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment