How to select all friends at once to invite friends on Facebook
Facebook
invites are useful to invite your friends to view your website or to
like your new Facebook page, you will see friends invite almost
everywhere in Facebook.
When i started learning JavaScript, i came to know that we can easily select all check boxes by making a small JavaScript command line.
But before we start, make sure you are using Google Chrome or Firefox, they are good and major browsers, so using them makes sure that it will not create any problems. I will explain it in step by step procedures.
- Open Google Chrome
- Now open any event etc. where you can invite your friends
- Now scroll down until all your friends appears in the box
- Press CTRL+SHIFT+J (for Chrome), CTRL+SHIFT+K (for FireFox)
- A window will open in bottom or top of the browser
- Paste this line of JavaScript code in the console
javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()};After pasting click enter, now wait for a minute and and when all friends are selected click on send, if you have large number of friends it may take about 1 - 2 minutes for successfully sending the invites .
0 comments:
Post a Comment