Skip to content

Instantly share code, notes, and snippets.

@the-bass
Created April 2, 2018 10:57
Show Gist options
  • Save the-bass/c1a9c3564c43b7611b8d5a40833217b1 to your computer and use it in GitHub Desktop.
Save the-bass/c1a9c3564c43b7611b8d5a40833217b1 to your computer and use it in GitHub Desktop.
Display the URL of an image on flickr in the JS console.
var testimonials = document.querySelectorAll('img.main-photo');
Array.prototype.forEach.call(testimonials, function(element, index) {
console.log(element.src);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment