Skip to content

Instantly share code, notes, and snippets.

@k9ordon
Created February 12, 2013 12:57
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 k9ordon/4762681 to your computer and use it in GitHub Desktop.
Save k9ordon/4762681 to your computer and use it in GitHub Desktop.
8tracks liked tracks to plain
$( "li.track" ).each(function( index ) {
var track = $('.t', this).text(),
artist = $('.a', this).text().replace("&","");
$(this).text(artist + ' - ' +track);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment