Skip to content

Instantly share code, notes, and snippets.

@suissa
Created February 16, 2013 23:58
Show Gist options
  • Save suissa/4969303 to your computer and use it in GitHub Desktop.
Save suissa/4969303 to your computer and use it in GitHub Desktop.
/*
* Check all checkboxes for facebook
*/
var checks = document.getElementsByClassName("checkbox");
for(var i = 0; i < checks.length; i++){ checks[i].checked = true; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment