How to Invite All Friends to Facebook event New 2019
We will describe it step by step. Keep in mind to ensure you are making use of Firefox, as it sustains JavaScript functions.
How To Invite All Friends To Facebook Event
Facebook Event Invite Code
Code to invite all friends to a Facebook occasion at once. Once more, make use of Google Chrome to attain this.
1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".
3. Scroll to the very bottom of that list that just popped up.
4. Kind "javascript:" right into the address bar. (Notification 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 after that 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 tried this as well as it worked, yet if for one reason or another it doesn't for you, just let me recognize, I'll update the script. As well as you can only invite as much as 500 individuals per day to an event.
Code Explanation
Given that I am a Computer Researcher, I might as well briefly describe what the manuscript does so you understand that it is not a virus, yet a straightforward hack.
Here's what the Facebook invite all to like manuscript does:
This line look for the component 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 pals:
for(var i=0;i<inputs.length;i++)
Click on their corresponding invite switch:
{ inputs[i].click();