Created
December 15, 2015 19:03
-
-
Save sepans/fb4e70bea21734392830 to your computer and use it in GitHub Desktop.
one line to print flickr thumbnail url in a flickr search result
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
// copy and paste it to console to get all filenams. if didn't work update '.photo-list-photo-view' with correct div class | |
[].forEach.call( document.querySelectorAll('.photo-list-photo-view'), function(item) { var url = item.style.backgroundImage.replace('url("//',''); url = url.replace('")',''); console.log(url); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment