W3cubDocs

/DOM

document.images

document.images returns a collection of the images in the current HTML document.

Syntax

var htmlCollection = document.images;

Example

var ilist = document.images;

for(var i = 0; i < ilist.length; i++) {
    if(ilist[i].src == 'banner.gif') {
        // found the banner
    }
}

Notes

document.images.length – property, returns the number of images on the page.

document.images is part of DOM HTML, and it only works for HTML documents.

Specifications

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/document/images