How to Add All Friends to A Facebook event 2019
By
Ega Wahyudi
—
Thursday, November 28, 2019
—
Invite All Friends Facebook Event
We will certainly explain it step by step. Bear in mind to ensure 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 event simultaneously. Again, utilize Google Chrome to achieve this.
1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".
3. Scroll down to the really lower of that listing that simply appeared.
4. Type "javascript:" 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 few seconds and afterwards 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();
Note: I tried this as well as it functioned, yet if for one reason or another it doesn't for you, simply let me know, I'll update the manuscript. And you can just invite approximately 500 individuals per day to an occasion.
Code Explanation
Because I am a Computer Scientist, I may too quickly explain what the script does so you understand that it is not a virus, however an easy hack.
Right here's what the Facebook invite all to like script does:
This line searches for the element called "_ 42ft ..." which happens to be the invite box and loads it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loops for all your good friends:
for(var i=0;i<inputs.length;i++)
Click their corresponding invite switch:
{ inputs[i].click();