Advertisement
ScottBin

Friends

Oct 19th, 2018
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //STEP 1
  2. //var newWindow = window.open("","sausages");
  3. //var para = document.createElement("p");
  4. //newWindow.document.body.appendChild(para);
  5. //var friends = document.querySelectorAll(".profileFriendLink");
  6. //friends.forEach(function(a){para.innerHTML += a.children[0].alt /*+ "," + a.href*/ + "<br>"});
  7. //STEP 2
  8. //var para = window.open("","sausages").document.querySelector("p");
  9. //var friends = document.querySelectorAll(".profileFriendLink");
  10. //friends.forEach(function(a){para.innerHTML += a.children[0].alt /*+ "," + a.href*/ + "<br>"});
  11.  
  12. var pages = document.querySelectorAll(".CommonPagingArea a").length;
  13. var z = localStorage.length;
  14. document.querySelectorAll(".profileFriendLink img").forEach(function(a,b){localStorage.setItem(b+z,a.alt)});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement