How to select all friends at once in Facebook to invite
This code doesn't works anymore, See the update one here
If you are a facebook user then you might certainly came across situations where you wanted to invite all your friends to a group/fan page. But unfortunately facebook doesn't has a "Select All" button. It might get frustrating sometimes if you have too many friends on your list.
Well, there is a quick remedy for it. Follow these steps:
1. Go to your Event, Group or page and click “Invite People”.
2. Once the page has loaded you should see all of your friends, but they are not selected.
3. At this point, copy and paste the javascript code below into your Web browser’s address bar, then hit “Enter”.
4. If all goes well, it selects all of your friends!
javascript: if(document.getElementById("friends")!=null){if(document.getElementById("friends").children != null){var lst = document.getElementById("friends").children;for(var i=0; i < lst.length; i++){fs.click(lst[i]);}
alert("Selected: " + lst.length + " Friends");}}; void(0);
Retweet, Digg and share if you liked it :)
