Rip Youtube Playlists (Unfinished)


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

http://www.youtube.com/playlist?list=PL7AB74822FE7D03E8&feature=plcp


Copy this code and paste it in your HTML
  1. list = '';
  2. $.each($('.title.video-title'), function(i, item){
  3. list += $(this).text() + '\n';
  4. });
  5.  
  6. alert(list);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.