How to Invite All Friends In Facebook event New Updated 2019

How To Invite All Friends In Facebook Event - Facebook buddy invites serve to invite your good friends ahead to an occasion or to like a Facebook web page. Sadly invites through Facebook can become a lengthy job, particularly if you have to invite 1500 buddies.

Invite All Friends Facebook Event

We will explain it detailed. Remember to see to it you are making use of Firefox, as it supports JavaScript functions.

How To Invite All Friends In Facebook Event


Facebook Event Invite Code
Code to invite all friends to a Facebook occasion simultaneously. Once again, utilize Google Chrome to accomplish 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 just popped up.
4. Kind "javascript:" into the address bar. (Notification the semicolon after javascript, no quotes).
5. Paste the invite all to event code listed below right after "javascript:".
6. Wait a few seconds and afterwards hit Send 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 functioned, but if for one reason or another it doesn't for you, simply let me recognize, I'll update the script. And also you can only invite up to 500 individuals each day to an occasion.

Code Explanation
Because I am a Computer system Researcher, I might also briefly explain what the script does so you recognize that it is not a virus, yet an easy hack.

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

This line searches for the element called "_ 42ft ..." which happens to be the invite box as well as lots it to the inputs variable.

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

This loopholes for all your close friends:

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

Click on their corresponding invite button:

{ inputs[i].click();