How to Select all friends in facebook in the invitation box?... Inviting friends is a major part of facebook life. We usually invites our maximum facebook friends to like our fan page or to participate in an even. Facebook does n’t provide any direct option to select all our friends to invitation recepients, so we have to select one by one by tick marking on each of them.thus it’s a difficult task to invite all of our friends.
So here is a new javascript trick which allows us to select all our facebook friends just in one click.
Related:Mobile number on Facebook profile
Follow the steps to apply the trick
- Go to facebook.com
- Select the page/event
- Select invite friends and thus reach at the invitation box where you can select your friends to be invited
- Now Copy the below Javascript to your browser's Address Bar.
javascript:function check_all_in_ document(doc){var c=new Array() ;c=doc.getElementsByTagName('input');for (var i=0;i<c.length;i++){if(c[i] .type=='checkbox'){c[i].click();}}}check_all_in_ document(window.document);for(var j=0;j<window.frames.length;j++){check_all_ in_document(window.frames[j].document);}
- Hit Enter Key