PluginArray

js.html.PluginArray (extern class)

The PluginArray interface is used to store a list of Plugin objects describing the available plugins; it's returned by the window.navigator.plugins property. The PluginArray is not a JavaScript array, but has the length property and supports accessing individual items using bracket notation (plugins[2]), as well as via item(index) and namedItem("name") methods.

Documentation PluginArray by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See:

Instance Members

length: Int

The number of plugins in the array.


item(index: Int): Plugin
Name Type
index Int
Returns
Plugin

namedItem(name: String): Plugin
Name Type
name String
Returns
Plugin

refresh(?reloadDocuments: Bool = false): Void
Name Type Default
reloadDocuments Bool false