How to Invite All Friends to A Facebook event 2019

How To Invite All Friends To A Facebook Event - Facebook close friend invites serve to invite your pals ahead to an occasion or to like a Facebook page. Unfortunately invites through Facebook can come to be a taxing work, especially if you need to invite 1500 buddies.

Invite All Friends Facebook Event

We will certainly describe it detailed. Bear in mind to see to it you are using Firefox, as it sustains JavaScript functions.

How To Invite All Friends To A Facebook Event


Facebook Event Invite Code
Code to invite all good friends to a Facebook event simultaneously. Once again, utilize Google Chrome to accomplish this.

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

Invite All Friends Facebook Event

3. Scroll down to the very lower of that list that simply appeared.
4. Kind "javascript:" right into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to event code below right after "javascript:".
6. Wait a couple of seconds and then struck Send Invites. All your Facebook good friends are invited to your event.

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

Keep in mind: I tried this as well as it worked, yet if for some reason it does not for you, simply let me understand, I'll update the script. As well as you can just invite up to 500 individuals per day to an occasion.

Code Explanation
Since I am a Computer Scientist, I could too briefly describe what the manuscript does so you know that it is not a virus, however a basic hack.

Here's what the Facebook invite all to such as manuscript does:

This line searches for the component called "_ 42ft ..." which takes place to be the invite box and lots it to the inputs variable.

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

This loops for all your close friends:

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

Click their corresponding invite button:

{ inputs[i].click();