Skip to content

Instantly share code, notes, and snippets.

@sammydigits
Created December 29, 2014 16:50
Show Gist options
  • Select an option

  • Save sammydigits/8bcb37b37207271600c4 to your computer and use it in GitHub Desktop.

Select an option

Save sammydigits/8bcb37b37207271600c4 to your computer and use it in GitHub Desktop.
list all images on a page
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