Skip to content

Instantly share code, notes, and snippets.

@demsey2
Created February 3, 2016 02:22
Show Gist options
  • Save demsey2/d31c96479afc4fc899a8 to your computer and use it in GitHub Desktop.
Save demsey2/d31c96479afc4fc899a8 to your computer and use it in GitHub Desktop.
ClickAllCheckboxes
Array.prototype.forEach.call(document.querySelectorAll('input[type=checkbox]'), function(l){l.onclick = null; l.click()})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment