Saturday, 18 January 2014

// // Leave a Comment

Invite all your friends to Like your facebook page at once using javascript


Here is a quick way to invite all your facebook friends to like your page at once.
Yeah, its quite boring to click hundreds of invite buttons but now this trick will do the work for you ;-)

Here are the steps involved:

  • Simply open your facebook fan page.
  • Open the 'Build Audience' section and click on 'Invite friends'

Related Posts: Why do facebook pages get unpublished?

  • Select 'Recent Interactions' and tick mark on 'Search All Friends'

  • Now just copy the below script and paste it in the URL box with respect to your browsers.

  • For Mozilla Firefox: Press Ctrl+Shift+K buttons and paste the script in the console tab before hitting enter.

    javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()};

Related Posts: How to keep a facebook group more active?

  • For Google Chrome:Just press F12 and follow the Console option. Paste the following script and hit enter.

    javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()};

Thats it!
All your friends will get an invitation to like your page..
Enjoy ;-)

0 comments:

Post a Comment

Your comments are precious to us!

Sharing is Caring..