We have always been looking for new codes and tricks to select all friends in a click and invite them to an event.
Here is the new Javascript code to copy and paste in the address bar when the window “invite friends” appears.
Within moments all your friends will be selected. (Works with check boxes)
Version 1: javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()}; Version 2: javascript:elms=document.getElementsByName("checkableitems[]");for (count=0;count<elms.length;count++){setTimeout("elms["+count+"].click()",100)}
No comments:
Post a Comment