Skip to content

Instantly share code, notes, and snippets.

@stefanotorresi
Created April 7, 2013 09:29
Show Gist options
  • Save stefanotorresi/5329745 to your computer and use it in GitHub Desktop.
Save stefanotorresi/5329745 to your computer and use it in GitHub Desktop.
facebook invite to event
checkboxes = document.getElementsByName("checkableitems[]");
for (i=0;i<checkboxes.length;i++) {
var checkbox = checkboxes[i];
if (checkbox.type == "checkbox" && !checkbox.checked ) {
checkbox.click();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment