Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

you're trying to approach the id attribute, while what you're really looking for is the elements's class.

try replacing if(e[i].id.indexOf('addButton')>=0) with if(e[i].className.indexOf('addButton')>=0).

share|improve this answer
1  
Thank you very much. It works, but I also need it to wait at least 10 s before each click. I've tried this: javascript:e=document.getElementsByTagName('a');for(i=0;i<e.length;i++) {if(e[i].className.indexOf('addButton')>=0)setTimeout(function() {e[i].click();},10000);}void(0); – Nemo Apr 20 '12 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.