Created
June 16, 2017 08:44
-
-
Save NasirNobin/74c094d4c13ecd356d0b89a31e10e7f4 to your computer and use it in GitHub Desktop.
media.pipexbd.com download links grabber
This file contains hidden or 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
| // include jquery | |
| var x = ''; | |
| $('.item.file a').each(function(){ | |
| x+= 'http://media.pipexbd.com' + $(this).attr('href') + "\n"; | |
| }) | |
| // console.log(x); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment