Packagedom.objects
Classpublic class PluginArray
InheritancePluginArray Inheritance Object

Introduced in: DOM 0 

Contains a list of Plugins objects loaded in the browser.

See also

MSDN - plugins Collection
MDC - window.navigator.plugins


Public Properties
 PropertyDefined By
  DOM 0 length : Number
[read-only] The number of Plugins in the array.
PluginArray
Public Methods
 MethodDefined By
  
DOM 0 item(index:Number):Plugin
Retrieves a Plugins by index.
PluginArray
  
Retrives a Plugins by name.
PluginArray
  
DOM 0 refresh():void
Undocumented
PluginArray
  
Non-Standard tags():void
Retrieves a collection of objects that have the specified HTML tag name.
PluginArray
Property Detail
DOM 0 lengthproperty
length:Number  [read-only]

Introduced in: DOM 0 

The number of Plugins in the array.


Implementation
    public function get length():Number

See also

Method Detail
DOM 0 item()method
public function item(index:Number):Plugin

Introduced in: DOM 0 

Retrieves a Plugins by index.

Parameters

index:Number — Index of the Plugins

Returns
Plugin — The specified Plugins

See also

DOM 0 nameItem()method 
public function nameItem(name:DOMString):Plugin

Introduced in: DOM 0 

Retrives a Plugins by name.

Parameters

name:DOMString — Name of the Plugins

Returns
Plugin — The specified Plugins

See also

DOM 0 refresh()method 
public function refresh():void

Introduced in: DOM 0 

Undocumented

tags()method 
public function tags():void

Non-standard (Microsoft)

Retrieves a collection of objects that have the specified HTML tag name.

See also


Example
var coll = document.all.tags("p");