Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Created April 17, 2013 00:57
Show Gist options
  • Save lunaroja/5400939 to your computer and use it in GitHub Desktop.
Save lunaroja/5400939 to your computer and use it in GitHub Desktop.
check all checkboxes on page
var checkboxes = document.querySelectorAll("input.checkbox");
for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].click(); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment