I want to add to my friends all profiles shown on a Facebook page. I've seen Bookmarklet: Click All Like Buttons On Tumblr and I was trying something like
javascript:e=document.getElementsByTagName('a');for(i=0;i<e.length;i++) {if(e[i].id.indexOf('addButton')>=0)e[i].click();}void(0);
because that's the class of the a elements in the buttons, which are like
<a class="uiIconText addButton" style="padding-left: 18px;"><i class="img sp_7b7xx5 sx_a97ca4" style="top: 2px;"></i>Aggiungi agli amici</a>
(in Italian). But nothing happens (and I'm using Firefox). The a element appears to be empty, where is the actual link?