Tip: Click lines to highlight, hold ctrl/cmd to multi-select
Select all friends when suggeting a facebook page. (22-Jul @ 06:49)
Tired of manually clicking 1000+ of your friends to invite to a page and which you could invite them all? Paste the javascript into the address bar whilst inviting members, and bang! All the people's faces will be selected.
If you are on a Facebook group, don't use Internet Explorer so you can right click the iframe, open it in a new tab and execute the javascript on that page. (The iframe you need to right click is the invite content box.) (You can't? Use Firefox.)
Syntax Highlighted Code
- javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
Plain Code
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}