If you have a lot of pending friend requests list, you might find its tiring to accept all the requests one at a time. Apparently there is a way to accept all at once using a JavaScript code.
- At your friend requests page, make sure to have all the requests loaded by scrolling down the page until the end.
- Next, copy this JavaScript code:
javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);
and paste it in the address bar of your friend requests page. - Make sure to manually add
javascript:
at the front of the code once you have pasted it in the address bar because some browsers will automatically remove that line. - Press Enter and watch the magic happens.
0 comments: