Document: images property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The images read-only property of the Document interface returns a collection of the images in the current HTML document.

Value

An HTMLCollection providing a live list of all of the images contained in the current document. Each entry in the collection is an HTMLImageElement representing a single image element.

Usage notes

You can use either JavaScript array notation or the item() method on the returned collection to access the items in the collection. The following are equivalent:

js
firstImage = imageCollection.item(0);

firstImage = imageCollection[0];

Examples

This example looks through the list of images and finds those named "banner.gif".

js
for (const image of document.images) {
  if (image.src === "banner.gif") {
    console.log("Found the banner");
  }
}

Specifications

Specification
HTML
# dom-document-images-dev

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
images

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
Partial support
Partial support
Has more compatibility info.