How to Invite Everyone to A Facebook event
By
Dany Firman Saputra
—
Friday, March 27, 2020
—
Invite All Friends Facebook Event
We will certainly discuss it detailed. Keep in mind to ensure you are utilizing Firefox, as it sustains JavaScript features.
How To Invite Everyone To A Facebook Event
Facebook Event Invite Code
Code to invite all buddies to a Facebook occasion 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 down to the really lower of that listing that simply appeared.
4. Kind "javascript:" into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to event code listed below right after "javascript:".
6. Wait a few secs and then 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 attempted this and it worked, however if somehow it doesn't for you, just let me recognize, I'll upgrade the manuscript. And you can only invite as much as 500 people daily to an occasion.
Code Explanation
Because I am a Computer system Researcher, I could also quickly discuss what the manuscript does so you understand that it is not a virus, yet a simple hack.
Below's what the Facebook invite all to such as manuscript does:
This line look for the aspect called "_ 42ft ..." which occurs to be the invite box as well as lots 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();