Created
April 2, 2018 10:57
-
-
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.
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
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