Skip to content

Instantly share code, notes, and snippets.

@normalhuman
Created November 12, 2015 17:01
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 normalhuman/422f65ae3b26a3370cc3 to your computer and use it in GitHub Desktop.
Save normalhuman/422f65ae3b26a3370cc3 to your computer and use it in GitHub Desktop.
User Ids of mod candidates
c = document.querySelectorAll('.user-details a');
a = [];
for (var i=0; i < c.length; i++) {
a.push(c[i].href.split('/')[4]);
}
console.log(a.join());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment