Created
February 3, 2020 08:31
-
-
Save GodSaveEarth/3df6996d438d2fbb0172d7676b2ec528 to your computer and use it in GitHub Desktop.
Скопировать все id друзей с текущего экрана
This file contains 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
x = document.getElementsByClassName("friends_field_title"); | |
r = ""; | |
for (i = 0; i < x.length; i++) { | |
a = x[i].getElementsByTagName("a")[0]; | |
l = a.getAttribute("href").substr(1); | |
r += l + "<br>\n"; | |
} | |
//console.log(r); | |
var myWindow=window.open(''); myWindow.document.write(r); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment