The facebook [ Invite friends ] Script - ANSWER

badoial2

Registered Member
Joined
Oct 11, 2009
Messages
65
Reaction score
28
I see allot of people here posting new threads asking about the old invite friends script for facebook.

javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

The answer is :

NO there is no issue with the script. Since the new Facebook interface has been released. And it seems like they keep making minor adjustments every day the process IS SLOWER.

Took me about 12 hours from the point where i invited 6000 friends in an event using the script until the invites were actually sent an you could see the "6000 awaiting reply" to the event page.

For whoever isn't familliar with the script :

The newly redesigned Facebook has led inviting members to an event/group/page to an even more complex process. Why can't they just make a "select all" button? Initially I got tired of clicking several hundred times on all the pictures to invite people to my event, so I came up with this small piece of Javascript:

javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

Go to your event/group/page, click invite people and then paste this snippet in the URL field of your browser.
Left-click the mouse in the URL field and hit Enter. Your invitations will not be sent yet, but all your friends will be selected. Click the "Invite" or "Send" button on the Facebook page to finally send the invites.

urljs.png
 
The answer is :

NO there is no issue with the script. Since the new Facebook interface has been released. And it seems like they keep making minor adjustments every day the process IS SLOWER.

Took me about 12 hours from the point where i invited 6000 friends in an event using the script until the invites were actually sent an you could see the "6000 awaiting reply" to the event page.

For whoever isn't familliar with the script :

The newly redesigned Facebook has led inviting members to an event/group/page to an even more complex process. Why can't they just make a "select all" button? Initially I got tired of clicking several hundred times on all the pictures to invite people to my event, so I came up with this small piece of Javascript:

Quote:javascript:elms=document.getElementById('friends') .getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

Go to your event/group/page, click invite people and then paste this snippet in the URL field of your browser.
Left-click the mouse in the URL field and hit Enter. Your invitations will not be sent yet, but all your friends will be selected. Click the "Invite" or "Send" button on the Facebook page to finally send the invites.

taken from
 
Just a note, no need for the script if you make a list, add all your "friends" to it, then when you click the suggest link, just type in the list name, and click select all. Done. No waiting for the Javascript to select them all, not finding the code and cutting and pasting.

But if you want to do it your way, be my guest. I also and starting to make Male and Female lists so I can target my suggestions. But that is just me.
 
this also works for me

Code:
javascript:var%20numfriends=document.getElementById('friends').getElementsByTagName('li').length;fs.click(document.getElementById('friends').getElementsByTagName('a')[1].parentNode);for(var%20i=0;%20i%20<%20numfriends;%20i++){fs.click(document.getElementById('friends').getElementsByTagName('a')[i].parentNode);}
 
Just a note, no need for the script if you make a list, add all your "friends" to it, then when you click the suggest link, just type in the list name, and click select all. Done. No waiting for the Javascript to select them all, not finding the code and cutting and pasting.

But if you want to do it your way, be my guest. I also and starting to make Male and Female lists so I can target my suggestions. But that is just me.

How do you make a list?
 
If only someone could integrate this into a bot to invite from multiple accounts automatically... :rolleyes:
 
Back
Top