How to Invite All Friends to An event On Facebook 2019
By
pupu sahma
—
Wednesday, July 31, 2019
—
Invite All Friends Facebook Event
We will certainly clarify it step by step. Bear in mind to make sure you are using Firefox, as it sustains JavaScript features.
How To Invite All Friends To An Event On Facebook
Facebook Event Invite Code
Code to invite all friends to a Facebook event simultaneously. Again, utilize Google Chrome to achieve this.
1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".
3. Scroll to the really bottom of that list that just turned up.
4. Type "javascript:" into the address bar. (Notification the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code below right after "javascript:".
6. Wait a couple of seconds and after that 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, however if somehow it doesn't for you, simply let me know, I'll upgrade the script. As well as you can only invite up to 500 individuals each day to an occasion.
Code Explanation
Considering that I am a Computer Researcher, I may also briefly explain what the script does so you recognize that it is not a virus, but a simple hack.
Right here's what the Facebook invite all to like script does:
This line look for the aspect called "_ 42ft ..." which happens to be the invite box and also lots it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loops for all your friends:
for(var i=0;i<inputs.length;i++)
Click on their corresponding invite button:
{ inputs[i].click();