Advertisement
DraKiNs

[JAVASCRIPT] mp3Skull Links

Nov 19th, 2011
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * Mostrar Links mp3Skull
  3.  *
  4.  * Por Bruno da Silva
  5.  * Equipe de programadores [iPs]TeaM
  6.  *
  7. */
  8.  
  9.  
  10. // Vá para o site: http://mp3skull.com/top.html
  11. // Então cole o código abaixo na barra de endereços
  12. // Os links para músicas irão aparecer
  13.  
  14. javascript:
  15.  
  16. var alllinks = document.getElementById('content').getElementsByTagName('a');
  17. for(link in alllinks)
  18. {
  19.     document.write(alllinks[link].href + "<br/>");
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement