Skip to content

Instantly share code, notes, and snippets.

@thegass
Created November 16, 2019 19:28
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 thegass/cf418b602b13949840c08c15790ec39e to your computer and use it in GitHub Desktop.
Save thegass/cf418b602b13949840c08c15790ec39e to your computer and use it in GitHub Desktop.
get album urls from bandcamp-discography
var x = document.querySelectorAll("li.music-grid-item > a:nth-child(1)");
var i, text="";
for (i = 0; i < x.length; i++) {
text += x[i] + "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment