Created
March 30, 2012 22:05
-
-
Save jboesch/2255972 to your computer and use it in GitHub Desktop.
Get favorite tracked in an array from 8tracks
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
// 1. Goto 8tracks.com and login. | |
// 2. Under your profile click "Favorited tracks". | |
// 3. Open up the console (CMD+OPTION+I) in Chrome or Safari and input this: | |
var music=[];$('.track_info').each(function(){ music.push($.trim($(this).find('.a').text()) + ' - ' + $.trim($(this).find('.t').text())) });music.join("\n"); | |
// 4. Then hit enter. | |
// You will get a list of your music that you can copy/paste somewhere else. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment