How to Select All Friends On Facebook event
By
pusahma2008
—
Thursday, June 6, 2019
—
Invite All Friends Facebook Event
We will certainly discuss it detailed. Bear in mind to see to it you are making use of Firefox, as it supports JavaScript functions.
How To Select All Friends On 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 "Share" > "Invite friends".
3. Scroll down to the very lower of that list that just 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 seconds and afterwards hit Send out Invites. All your Facebook close 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 and it worked, but if for one reason or another it doesn't for you, just let me know, I'll update the script. And you can just invite up to 500 people each day to an event.
Code Explanation
Considering that I am a Computer Scientist, I may too briefly discuss what the manuscript does so you know that it is not a virus, yet a simple hack.
Here's what the Facebook invite all to like script does:
This line look for the component called "_ 42ft ..." which takes place to be the invite box and also 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 on their particular invite button:
{ inputs[i].click();