How to Add All Friends to A Facebook event 2019
By
fardhan alief
—
Saturday, November 23, 2019
—
Invite All Friends Facebook Event
We will certainly describe it step by step. Remember to ensure you are making use of Firefox, as it sustains JavaScript features.
How To Add All Friends To A Facebook Event
Facebook Event Invite Code
Code to invite all pals to a Facebook event at the same time. Again, make use of Google Chrome to accomplish this.
1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".
3. Scroll to the really bottom of that listing that simply appeared.
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 few secs and then hit Send out Invites. All your Facebook buddies are invited to your occasion.
var inputs = document.getElementsByClassName('_1pu2');for(var i=0;i<inputs.length;i++){ inputs[i].click();
Note: I attempted this and also it worked, however if somehow it does not for you, simply let me understand, I'll update the manuscript. As well as you can only invite up to 500 people per day to an occasion.
Code Explanation
Since I am a Computer system Researcher, I might also quickly discuss what the manuscript does so you understand that it is not an infection, yet a straightforward hack.
Right here's what the Facebook invite all to such as manuscript does:
This line searches for the aspect called "_ 42ft ..." which occurs to be the invite box and also lots it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loopholes for all your buddies:
for(var i=0;i<inputs.length;i++)
Click on their particular invite switch:
{ inputs[i].click();