Last active
August 29, 2015 14:02
-
-
Save wesalvaro/32d3ce554ea74a7f24f0 to your computer and use it in GitHub Desktop.
Get all dem free songs!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a[href*=downloadSong]').each(function() { | |
$('<iframe />').attr('src', $(this).attr('href')).appendTo('body'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment