window.document.all - collection of all tags and objects in the basic part of the document.
window.document.anchors - collection of all anchors.
window.document.applets - collection of all objects including the built - in elements of management graphic objects, applets, introduced and other objects.
window.document.embeds - collection of all embeded objects.
window.document.forms - collection of all forms.
window.document.images - collection of all pictures.
window.document.links - collection of all references and tags AREA.
window.document.scripts - collection of all scripts.
window.document.stylesheets - collection of all properties of style(tags STYLE).
document.stylesheets(n).imports - collection of all imported properties of style of the table of styles "n".
window.navigator.mimetypes - collection all of MIME, supported by the browser.
window.navigator.plugins - Collection of all embeded objects, analogue a collection "embeds".
object.areas - collection of all areas of a picture-map.
object.cells - collection of cells in a line (objects: TH and TD).
object.elements - collection of all elements of the form.
object.filters - Collection of filters of the tag (object).
object.options - collection of the tags OPTION of the tag SELECT.
object.rows - collection of all lines of object of the tables (TABLE), including: THEAD, TBODY, TFOOT.
The reference to an element (object) of a collection.
Click item and the red text will be inserted into the text of the script
?("name" or number from 0 up to ?.length-1)
Viewing each by quantity.
Click item and the red text will be inserted into the text of the script
for devi=0 to ?.length-1 ... next
The review of a collection.
Click item and the red text will be inserted into the text of the script
for each devi In ? ... next
To receive the reference to a new collection from a collection by a filtration on a name of the tag, it is meaningful only for collections containing the various tags, for example WINDOW.DOCUMENT.ALL.
Click item and the red text will be inserted into the text of the script
set devc=?.tags("tag_name")
Quantity of elements in a collection.
Click item and the red text will be inserted into the text of the script
?.length