metalx1000

song getter for My Free Mp3

May 24th, 2015
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #wget list
  2. $(".info").each(function(){
  3.     var title=$(this).html();
  4.     var id=$(this).attr('data-aid');
  5.     var url="http://s.myfreemp3.biz/p.php?q="+id;
  6.     var output="wget '<a href='"+url+"'>" + url + "' -O '" + title + "</a>'";
  7.     $("body").append(output+"<br>")
  8. })
  9.  
  10. #just urls
  11. $(".info").each(function(){
  12.     var title=$(this).html();
  13.     var id=$(this).attr('data-aid');
  14.     var url="http://s.myfreemp3.biz/p.php?q="+id;
  15.     var output="<a href='"+url+"'>" + url + "</a>";
  16.     $("body").append(output+"<br>")
  17. })
Add Comment
Please, Sign In to add comment