HOW TO - Single click all Facebook friends on invite
I don't know about you but clicking every single one of your friends on a Facebook invite is beyond tedious. Follow these steps to save yourself a great deal of time.
1. If you haven't already, download the Google Chrome web browser. (Required)
2. Launch Chrome, and login to Facebook.
3. Whether it's a group, event or page invite - find your way to Invite Friends
4. Change the drop-down menu from Recent Interactions to Search All Friends
5. Scroll down through your ENTIRE list of Friends - all the way to the bottom.
6. Once at the bottom of the list, on the Chrome Menu Bar, go to View > Developer > Developer Tools
7. On the Developer Tools dashboard you just opened, click the far right tab labeled Console
8. Copy this string of code: var inputs = document.getElementsByTagName("input"); for (var i=0; i < inputs.length; i++) { if (inputs[i].getAttribute('type') == 'checkbox') { inputs[i].click(); } }
9. Paste it into the Console window and hit Enter - your entire list of friends should have checkmarks next to their names. (You can close the Developer Tools panel if you want after this step.)
10. Click Submit in Facebook and you've invited all your friends!
Follow on Twitter @techandjunk for more helpful tips!