Skip to content

Instantly share code, notes, and snippets.

@lpredova
Created June 7, 2018 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lpredova/58826e7979c584b1167bcc276ea25ce7 to your computer and use it in GitHub Desktop.
Save lpredova/58826e7979c584b1167bcc276ea25ce7 to your computer and use it in GitHub Desktop.
Instagram helper js scripts
function unfollowstagram (btnClassName) {
var users = document.getElementsByClassName(btnClassName);
for (var i = 0, len = users.length; i < len; i++) {
users[i].click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment