Invite All Your Facebook Friends to Like a Page or Event on Facebook 2026
The one-click 'Invite All' button for Facebook Pages is gone. In 2026, the reliable routes are: invite post-engagers one-by-one, use the event guest-invite list, or send personal messages. Console scripts targeting obfuscated class names break constantly — treat them as experimental, not guaranteed.
Every Wednesday. 28,400+ operators. Zero fluff.
✓ Check your inbox — click the confirmation link to complete sign-up.
✓ You're subscribed!
✓ You're already on the list.
Table of contents
Open Table of contents
- What Meta removed (and when)
- What reliably works in 2026
- Console scripts — honest assessment for 2026
- Invite people to a Facebook Fundraiser
- What about converting a personal profile to a Page?
- Code explanation (for the curious)
- If the bulk approach doesn’t work for you
- Facebook Invites — 2026 FAQ
- Updated for May 2026
What Meta removed (and when)
The “Invite All Friends to Like a Page” one-click flow — where a popup let you hit “Select All” and fire off invites in bulk — was available up through roughly mid-2023. Meta sunset it as part of the broader Pages experience overhaul. As of early 2026 there is no native UI equivalent.
Console scripts that automated this feature targeted specific CSS class names (like _1pu2, _42ft, or longer obfuscated strings). Because those class names change with every Meta deploy, the scripts break constantly. Some still float around on forums, and occasionally someone reports a working variant — but they are fundamentally fragile. If you choose to try one, understand you are chasing a moving target.
What reliably works in 2026
These three methods are native Meta features that have remained stable.
1. Invite people who reacted to a post
This is the highest-leverage approach if you have any reach at all. Boost a piece of content — an announcement, a milestone, a useful tip — and then invite every person who reacted to it to follow your Page.
Steps:
- Go to the post on your Page.
- Click the reaction count (the row of emoji icons below the post).
- A list of people who reacted will appear. Next to each name you’ll see an “Invite” button if they don’t already follow your Page.
- Click Invite for each person.

This is manual — there’s no “Invite All” button here either — but it converts well because these people already engaged. If you run a $5 boost and get 200 reactions, you can work through that list in a few minutes and convert a meaningful fraction into followers.
2. Invite friends to a Facebook Event
The Event invite flow is still intact and works well. When you create an event, you can invite your Facebook friends directly.
Steps:
- Go to your Facebook Event page.
- Click “Invite” (the button near the top of the event).
- Search for friends by name, or scroll through the list.
- Select the people you want to invite and click Send Invites.

Note: Meta has historically capped event invites, so don’t expect to invite thousands of people in a single session. For a real-world gathering, this is more than enough. For a large online event, paid promotion will reach more people faster than invite lists.
3. Direct message — the underrated approach
A personal message asking someone to check out your page converts far better than a blanket invite notification, which most people ignore. Keep it short and genuine:
“Hey [name], I just launched [page name] — it covers [topic you’re both interested in]. Would love your support if it resonates: [link]. No pressure either way.”
This doesn’t scale to hundreds of people, but for your first 50–100 followers it’s the most effective thing you can do. Those early followers also tend to engage, which helps the algorithm show your content to their networks.
Console scripts — honest assessment for 2026
I’m keeping this section because people search for it. Here’s the honest state of play:
Scripts that target obfuscated React class names break whenever Meta redeploys. The class name strings like .a8c37x1j.ni8dbmo4.stjgntxs.l9j0dhe7 are generated at build time and change regularly. A script that worked last month may do nothing today.
Meta also rate-limits and detects automation patterns. Sending a large number of rapid-fire invite clicks via script has resulted in temporary invite restrictions for some accounts. I don’t have a precise threshold — Meta doesn’t publish one — but doing 200+ automated clicks in a minute is likely to trigger it.
If you still want to try a console script, here is the general approach. Open the invites dialog in your browser, scroll to the bottom to load all friends, then open the browser console (F12 → Console tab) and run something like:
// WARNING: class names change with every Meta deploy.
// You must inspect the current DOM to find the correct selector.
// This is a template — it will NOT work as-is.
var inputs = document.querySelectorAll('REPLACE_WITH_CURRENT_SELECTOR');
for (var i = 0; i < inputs.length; i++) {
inputs[i].click();
}To find the current selector: open the invites dialog, right-click an “Invite” button, click “Inspect”, and look at the class list on that element. Copy those classes into the querySelectorAll call. This will work until the next Meta deploy.
I’m intentionally not publishing a “current working” selector because it will be stale within days.
Invite people to a Facebook Fundraiser
The fundraiser invite flow works similarly to events. From your fundraiser page, click “Invite Friends” and select people from the list. There’s no console shortcut worth publishing here for the same reason — the selectors change too often. The manual flow is the reliable path.
What about converting a personal profile to a Page?
This used to be a legitimate growth hack — Meta offered a migration tool that would convert your personal profile’s friends into Page followers. As of early 2026 this migration tool is no longer publicly available in the standard interface. If you see old posts recommending facebook.com/pages/create/migrate, that URL no longer resolves to the migration flow.
Code explanation (for the curious)
Since people often ask what the scripts do: they’re simple DOM automation. document.querySelectorAll(selector) finds all elements matching a CSS selector and returns a list. The for loop iterates over that list and calls .click() on each element, simulating a mouse click. That’s it — no data is sent anywhere, no external server is called. The only risk is triggering Meta’s own rate-limiting on the invite action, not anything about the script itself being malicious.
If the bulk approach doesn’t work for you
A message template that works:
“Hi [name], I just started [page name] about [topic]. I’m really excited about it and think it might be up your alley. Would you mind giving it a follow? [link] Either way, thanks!”
Personalize it even slightly — mentioning something specific to that person — and your response rate will be meaningfully higher.
Facebook Invites — 2026 FAQ
Does the “Select All” / “Invite All Friends” button still exist for Pages?
No. Meta removed the bulk “Select All” friends invite UI for Pages in 2023 as part of the Pages redesign. As of mid-2026 there is no native one-click equivalent. You can invite post-engagers individually or promote your Page with paid reach.
Will a console script get my account banned?
Meta doesn’t publish exact thresholds, and “banned” is extreme — what’s more likely is a temporary restriction on sending invites if you fire off hundreds of automated clicks in a short window. If you try a script, do it at a human-like pace (add delays between clicks, don’t run it on thousands of friends in one session). That said, these scripts are against Meta’s Terms of Service technically, so use your own judgment.
What’s the fastest legitimate way to get my first 500 Page followers in 2026?
A combination of: invite post-engagers from a boosted post (even a $10 boost to a warm audience), cross-post from your personal profile with a direct ask, and share the Page in relevant Facebook Groups where you’re already an active member. Direct messages to your closest contacts will also convert at a high rate. Paid Page-like ads still work but have lower ROI than organic invite-from-engagement.
Does the event invite script still work?
The event invite dialog is a native Meta UI that requires no script. If you’re looking for a console trick to auto-select all friends in the event invite popup, the same caveat applies: class names change regularly. The manual invite UI works fine for most real-world event sizes.
Related reading:
- How to Get Verified on Facebook
- How to download any Facebook video to your computer
- How to 10x your productivity
This guide is part of alejandrorioja.com — written by Alejandro Rioja, who now builds AI agent systems for founders. Including the agent that keeps this site current. How it works →
Updated for May 2026
A few things have shifted since this post first went up. Meta dropped the legacy “Page” verification track in 2024 and folded it into Meta Verified ($14.99–$19.99/mo depending on tier and country) — the blue check is now a subscription, not a one-time review. Friend-request flows still work as described, though Meta moved the bulk-cancel UI deeper into mobile settings; the desktop m.facebook.com/friends/center/requests/outgoing route still works (2026-04 spot check).
Worth knowing in 2026: ~3.07B Facebook MAU (Meta Q4 2025 earnings), but the share of time-on-platform relative to Reels and WhatsApp has continued sliding. If this post is part of an outreach strategy, weight WhatsApp and Threads (yes — Threads survived the 2024 pivot speculation and crossed 200M MAU) accordingly.
Every Wednesday. 28,400+ operators. Zero fluff.
✓ Check your inbox — click the confirmation link to complete sign-up.
✓ You're subscribed!
✓ You're already on the list.
Get the AI playbook in your inbox
Every Wednesday. 28,400+ operators. Zero fluff.
Check your inbox.
We sent you a confirmation email — click the link inside to complete your subscription. Check spam if you don't see it within a minute.
You're subscribed.
Welcome — the next edition lands in your inbox soon.
You're already on the list — look for it every Wednesday.