Skip to content

Instantly share code, notes, and snippets.

@Drane
Created September 23, 2016 15:10
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 Drane/c5828a1ace8b9d331e384aee40ef6216 to your computer and use it in GitHub Desktop.
Save Drane/c5828a1ace8b9d331e384aee40ef6216 to your computer and use it in GitHub Desktop.
Javascript enable all checkboxes
var textinputs = document.querySelectorAll('input[type=checkbox]');
textinputs.forEach(function(el){el.checked=true});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment