Posted By


bionickid on 09/26/11

Tagged


Statistics


Viewed 112 times
Favorited by 0 user(s)

Rip Beatport Tracks


/ Published in: JavaScript
Save to your folder(s)

http://www.beatport.com/my-beatport?perPage=150


Copy this code and paste it in your HTML
  1. trs = $('table.track-grid.track-grid-browse tr.track-grid-content');
  2. var tracklist = '';
  3.  
  4. $.each(trs, function() {
  5. var song = '';
  6. song += $.trim($(this).find('td:eq(3)').text());
  7. song += ' - ';
  8. song += $.trim($(this).find('td:eq(2)').text());
  9.  
  10. tracklist += song + "\n";
  11. });
  12.  
  13. alert(tracklist);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.