How to Add All Friends to A Facebook event

How To Add All Friends To A Facebook Event - Facebook buddy invites are useful to invite your good friends to find to an occasion or to such as a Facebook page. However invites through Facebook can become a time-consuming work, particularly if you have to invite 1500 buddies.

Invite All Friends Facebook Event

We will describe it detailed. Keep in mind to ensure you are utilizing Firefox, as it sustains JavaScript functions.

How To Add All Friends To A Facebook Event


Facebook Event Invite Code
Code to invite all close friends to a Facebook occasion simultaneously. Once more, utilize Google Chrome to achieve this.

1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".

Invite All Friends Facebook Event

3. Scroll to the extremely bottom of that checklist that simply popped up.
4. Kind "javascript:" right into the address bar. (Notification the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code listed below right after "javascript:".
6. Wait a couple of seconds and afterwards struck Send out Invites. All your Facebook friends are invited to your occasion.

var inputs = document.getElementsByClassName('_1pu2');for(var i=0;i<inputs.length;i++){ inputs[i].click();

Note: I attempted this and it worked, yet if for one reason or another it doesn't for you, simply let me recognize, I'll update the manuscript. And also you can only invite as much as 500 people daily to an event.

Code Explanation
Since I am a Computer Researcher, I could also quickly discuss what the script does so you understand that it is not a virus, yet a basic hack.

Right here's what the Facebook invite all to like script does:

This line searches for the aspect called "_ 42ft ..." which happens to be the invite box and also lots it to the inputs variable.

var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');

This loops for all your pals:

for(var i=0;i<inputs.length;i++)

Click on their respective invite switch:

{ inputs[i].click();