Created
December 29, 2014 16:50
-
-
Save sammydigits/8bcb37b37207271600c4 to your computer and use it in GitHub Desktop.
list all images on a page
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 images = document.images; | |
| for (var i=0; i<images.length; i++){ | |
| console.log(images[i].src); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment