Skip to content

Instantly share code, notes, and snippets.

@meajinkya
Created September 11, 2018 10:32
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 meajinkya/128eb2c6c24aec1b09376ca89566f3fe to your computer and use it in GitHub Desktop.
Save meajinkya/128eb2c6c24aec1b09376ca89566f3fe to your computer and use it in GitHub Desktop.
All Checkboxes Selector
(function() {
var allCheckboxes = document.querySelectorAll("input[type=checkbox]");
Array.from(allCheckboxes).forEach(
function(thisCheckbox) {
thisCheckbox.checked = true;
}
);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment