Skip to content

Instantly share code, notes, and snippets.

@mircobabini
Created July 10, 2013 13:20
Show Gist options
  • Select an option

  • Save mircobabini/5966223 to your computer and use it in GitHub Desktop.

Select an option

Save mircobabini/5966223 to your computer and use it in GitHub Desktop.
Working Select-All Script for Facebook Events Invites.
var inputs = document.getElementsByTagName("input");var cbs = [];for (var i = 0; i < inputs.length; i++) { if (inputs[i].type == "checkbox") { inputs[i].click(); } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment