document.images returns a collection of the images in the current HTML document.
var htmlCollection = document.images;
var ilist = document.images;
for(var i = 0; i < ilist.length; i++) {
if(ilist[i].src == 'banner.gif') {
// found the banner
}
} 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.
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'Document.images' in that specification. | Living Standard | |
| Document Object Model (DOM) Level 2 HTML Specification The definition of 'Document.images' in that specification. | Obsolete | Initial definition. |
© 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