HTML DOM applets Collection
Example
Find out how many <applet> elements there are in the document:
var x = document.applet.length;
The result of x could be:
1
Definition and Usage
The applets collection returns a collection of all <applet> elements in the document.
Note: The <applet> element is not supported in HTML5.
Browser Support
Collection | |||||
---|---|---|---|---|---|
applets | Yes | Yes | Yes | Yes | Yes |
Syntax
document.applets
Properties
Property | Description |
---|---|
length | Returns the number of <applet> elements in the collection. Note: This property is read-only |
Methods
Method | Description |
---|---|
[index] | Returns the <applet> element from the collection with the specified index (starts at 0). Note: Returns null if the index number is out of range |
item(index) | Returns the <applet> element from the collection with the specified index (starts at 0). Note: Returns null if the index number is out of range |
namedItem(id) | Returns the <applet> element from the collection with the specified id. Note: Returns null if the id does not exist |
Technical Details
DOM Version: | Core Level 1 Document Object |
---|---|
Return Value: | An HTMLCollection Object, representing all <applet> elements in the document. The elements in the collection are sorted as they appear in the source code |
Related Pages
HTML reference: HTML <applet> tag
HTML reference: HTML <object> tag
JavaScript reference: HTML DOM Object Object
❮ Document Object