Advertisement
RyanDolan123

Untitled

Feb 27th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var t = document.getElementsByClassName("with-icn retweet js-tooltip");
  2. var i = 0;
  3.  
  4. function a(){
  5.     i++;
  6.     t[i].click();
  7.     setTimeout(b,50);
  8. }
  9.  
  10. function b(){
  11.     document.getElementsByClassName("btn primary-btn retweet-action")[0].click();
  12.     if (i < t.length) {
  13.         setTimeout(a,50);
  14.     }
  15. }
  16.  
  17. a();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement