Advertisement
hasib_mo

select all friends in FB page like request

May 16th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**************************************************************************************
  2.        ////////////////////////////////////////////////////////////////\   
  3.           //////////////This is a CODE by Hasib Al Muhaimin///////////////\\\
  4.      ////////////////////////////////////////////////////////////////\\\\\
  5.  
  6. #open your facebook fan page(you must be a admin of the page. Then click the "Build audiance" button. Now choose "Invite Friends" option. A pop-up window will grow up. Choose "Select all friends" from the drop down menu. Scroll down until your all frinds got loaded in the pop up window. now paste the code below in the address bar and push "Enter". And you are ok. If you are using latest Mozilla then first bookmark the code and then after getting your all friends loaded in the pop up box click the bookmark link. Now you are OK. Happy Coding.#
  7. **************************************************************************************/
  8. javascript:
  9.     var inp=document.getElementsByTagName("input");
  10.     len=inp.length;
  11.     for(var i=0;i<len;i++)
  12.     {
  13.         if(inp[i].getAttribute("type")=="checkbox")
  14.         {
  15.             inp[i].click();
  16.         }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement