|
|
|
|
|
images
images returns a list of the images in the current document.
Syntax
image_list = document.imagesParameters
image_list is a nodeList of all the IMG elements in the document.
Example
ilist = document.images; for ( var i = 0; i < ilist.length; i++ ) { if ( ilist[i] == "banner.gif" ) { // found the banner } }
Notes
Specification
| mozilla.org | mailto:oeschger | bug 93108 |
|
|
|
|
|