Skip to content

Instantly share code, notes, and snippets.

@CVertex
Created September 14, 2016 06:46
Show Gist options
  • Select an option

  • Save CVertex/59b3fa6205dfb2777b6debc7c8790092 to your computer and use it in GitHub Desktop.

Select an option

Save CVertex/59b3fa6205dfb2777b6debc7c8790092 to your computer and use it in GitHub Desktop.
Read all Spotify Markets from Spotify Charts
// Visit https://spotifycharts.com/regional and run the following in console
var ts = '';
$('div[data-type=country] ul li').each(function(i,val) {
ts += 'new Market("' + $(val).text() + '","' + $(val).attr("data-value").toUpperCase() + '"),' + " ";
});
console.log(ts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment