Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save estevecastells/9a56f741e0ef514f4f1c268748f6a244 to your computer and use it in GitHub Desktop.
Save estevecastells/9a56f741e0ef514f4f1c268748f6a244 to your computer and use it in GitHub Desktop.
Console function to select all checkboxes in a page
(function() {
var aa = document.querySelectorAll("input[type=checkbox]");
for (var i = 0; i < aa.length; i++){
aa[i].click();
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment