Facebook event Invite All - Quick and Easy

Facebook Event Invite All - Ever wondered just how you can invite all your pals to like a page on Facebook? Suppose you're organizing a large Task X as well as want to invite everybody you understand to your Facebook event?
how to invite all friends to a facebook event

Facebook Event Invite All

Facebook Event Invite All


Facebook Event Invite Code
Code to invite all close friends to a Facebook event at the same time. Again, utilize Google Chrome to achieve this.

1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".

Invite All Friends Facebook Event

3. Scroll to the extremely bottom of that checklist that simply appeared.
4. Type "javascript:" right into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code listed below right after "javascript:".
6. Wait a couple of seconds and afterwards struck Send out Invites. All your Facebook close friends 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 and also it functioned, but if somehow it doesn't for you, simply let me know, I'll update the script. And also you can only invite up to 500 individuals per day to an occasion.

Code Explanation
Given that I am a Computer system Scientist, I may too briefly describe what the script does so you know that it is not an infection, however a simple hack.

Below's what the Facebook invite all to like script does:

This line searches for the component called "_ 42ft ..." which occurs to be the invite box and also loads 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 respective invite button:

{ inputs[i].click();