New Facebook method Select ALL Friends

white92

Regular Member
Joined
Nov 22, 2009
Messages
310
Reaction score
89
Hi guys!

Here is the new code to select all friends and invite! It's working! ;)

Code:
javascript:elms=document.getElementsByName("checkableitems[]");for  (i=0;i<elms.length;i++){if (elms[i].type="checkbox"  )elms[i].click()};
Tested on Firefox 3.6.15

Updated on 17 March 2011

PS: You need to scroll down in invite window!
 
Last edited:
I tried using this and it redirects me to a weird page. You're saying I hist the suggest friends button, let the friends load, then scroll to the bottom, paste this code into the browsers URL window and then click enter?

That is what I did and did not have any success. Lemme know dude.:D

Hi guys!

Here is the new code to select all friends and invite! It's working! ;)

Code:
javascript:elms=document.getElementsByName("checkableitems[]");for(count=0;count<elms.length;count++){setTimeout("elms["+count+"].click()",100)}
Tested on Firefox 3.6.15

PS: You need to scroll down in invite window!
 
Doesn't work.. It doesnt work for the page invitation..!

It doesnt selects the friends.. Let me know how guys..
Waiting.!
 
It can be a fan page stealer script. Check your fan pages and check the manage admin tab too.
It was sold on DP.
 
Doesn't work.. It doesnt work for the page invitation..!

It doesnt selects the friends.. Let me know how guys..
Waiting.!

It works for events :)
Page invitation is now just recomendation. I wouldn't use pages anymore because in events or groups you can send messages to everyone :)
 
Last edited:
It sellects 100 friends per request... but that is good enough to, thx!!!
 
You need a loop that cycles through each element and a "unique signature" to distinguish the friend checkbox.Once found check it.Then if need be click the next button to view more friends,Repeat untill no more are found.
 
hmm...didnt work for me...Wonder what I am doing wrong.

Ive made the event...Select guests to invite and loaded my friends in the window. I let them all load and the pasted the code into address bar and hit enter. I just get a blank white page...what have I done wrong?
 
I remember using a similar script and it resulted in stealing my fanpage and removing me from the admin SPOT .. too bad he deleted the page :/
 
hmm...didnt work for me...Wonder what I am doing wrong.

Ive made the event...Select guests to invite and loaded my friends in the window. I let them all load and the pasted the code into address bar and hit enter. I just get a blank white page...what have I done wrong?

What browser are you using?
 
Hi,

3.6.15....just takes me to a blank page with a few numbers in top left. 234 or 1536...just random numbers each time
 
Hi,

3.6.15....just takes me to a blank page with a few numbers in top left. 234 or 1536...just random numbers each time

You must try this:
Code:
javascript:elms=document.getElementsByName("checkableitems[]");for(count=0;count<elms.length;count++){setTimeout("elms["+count+"].click()",100)}

If not working you can also try this one:
Code:
javascript:elms=document.getElementsByName("checkableitems[]");for   (i=0;i<elms.length;i++){if (elms[i].type="checkbox"   )elms[i].click()};
 
Back
Top