How to Add All Friends to A Facebook event New 2019
We will describe it detailed. Bear in mind to see to it you are making use of Firefox, as it supports JavaScript features.
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, make use of Google Chrome to achieve this.
1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".
3. Scroll to the very bottom of that listing that simply appeared.
4. Kind "javascript:" 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 secs and afterwards struck Send out Invites. All your Facebook pals are invited to your event.
var inputs = document.getElementsByClassName('_1pu2');for(var i=0;i<inputs.length;i++){ inputs[i].click();
Note: I tried this as well as it worked, however if for one reason or another it doesn't for you, just let me understand, I'll update the script. As well as you can only invite up to 500 people per day to an occasion.
Code Explanation
Considering that I am a Computer Researcher, I may as well quickly explain what the manuscript does so you understand that it is not an infection, however a simple hack.
Here's what the Facebook invite all to such as manuscript does:
This line look for the aspect called "_ 42ft ..." which occurs to be the invite box and tons 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();