Skip to content

Instantly share code, notes, and snippets.

@GodSaveEarth
Created February 3, 2020 08:31
Show Gist options
  • Save GodSaveEarth/3df6996d438d2fbb0172d7676b2ec528 to your computer and use it in GitHub Desktop.
Save GodSaveEarth/3df6996d438d2fbb0172d7676b2ec528 to your computer and use it in GitHub Desktop.
Скопировать все id друзей с текущего экрана
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