How to Add All Friends to A Facebook event - Quick and Easy
By
Arif Rahman
—
Friday, January 24, 2020
—
Invite All Friends Facebook Event
how to invite all friends to a facebook event
How To Add All Friends To A Facebook Event
Facebook Event Invite Code
Code to invite all close friends to a Facebook event at once. Once again, make use of Google Chrome to attain this.
1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".
3. Scroll to the extremely bottom of that checklist that just turned up.
4. Kind "javascript:" right 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 couple of seconds and after that hit Send Invites. All your Facebook buddies 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 tried this and also it worked, yet if for some reason it doesn't for you, just let me recognize, I'll update the manuscript. As well as you can only invite up to 500 individuals each day to an event.
Code Explanation
Since I am a Computer Researcher, I could also briefly clarify what the manuscript does so you recognize that it is not an infection, however a straightforward hack.
Here's what the Facebook invite all to such as script does:
This line look for the aspect called "_ 42ft ..." which happens to be the invite box as well as loads it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loopholes for all your good friends:
for(var i=0;i<inputs.length;i++)
Click on their respective invite button:
{ inputs[i].click();