Advertisement
darkenvy

Angellist find friends: Add only those who are on angellist

Aug 14th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // use on page that says: "Select Slack contacts you want to connect with"
  2. for (var i=0; i<5295; i++) {
  3.     if ($('.picker-pic img')[i].getAttribute('alt') === "Nopic") {
  4.         $($('.friend_container ul li')[i]).hide()
  5.     }
  6.     if ($('.picker-pic img')[i].getAttribute('alt') !== "Nopic") {
  7.         $($('.friend_container ul li')[i]).click()
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement