Created
November 12, 2015 17:01
-
-
Save normalhuman/422f65ae3b26a3370cc3 to your computer and use it in GitHub Desktop.
User Ids of mod candidates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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