Skip to content

Instantly share code, notes, and snippets.

@cfg
Created April 8, 2015 15:06
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 cfg/24e56a18aff618c3fc14 to your computer and use it in GitHub Desktop.
Save cfg/24e56a18aff618c3fc14 to your computer and use it in GitHub Desktop.
quickly add track numbers to a spotify web playlist
// add jquery to collection-app-spotify frame
jQuery('.tracklist-playlist tbody tr').each( function(ix, el) { var r = jQuery(el); r.find('.tl-cell.tl-save').html( r.index() + 1 ); } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment