How to Invite All Friends On Facebook event

How To Invite All Friends On Facebook Event - Facebook buddy invites serve to invite your good friends ahead to an occasion or to like a Facebook web page. Unfortunately invites with Facebook can end up being a lengthy task, specifically if you have to invite 1500 friends.

Invite All Friends Facebook Event

We will certainly discuss it step by step. Remember to ensure you are using Firefox, as it sustains JavaScript functions.

How To Invite All Friends On Facebook Event


Facebook Event Invite Code
Code to invite all close friends to a Facebook event simultaneously. Once more, 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 bottom of that list 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 secs and then struck Send out 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 attempted this and also it worked, but if for one reason or another it doesn't for you, simply let me recognize, I'll update the script. And you can just invite up to 500 individuals daily to an event.

Code Explanation
Given that I am a Computer system Scientist, I may as well briefly describe what the manuscript does so you recognize that it is not an infection, but a basic hack.

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

This line searches for the component called "_ 42ft ..." which takes place to be the invite box as well as tons 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 corresponding invite switch:

{ inputs[i].click();