Created
July 10, 2013 13:20
-
-
Save mircobabini/5966223 to your computer and use it in GitHub Desktop.
Working Select-All Script for Facebook Events Invites.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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