TOC PREV NEXT INDEX

domref



window.navigator.plugins


Returns an array of the plugins installed in the browser.

Syntax

plugins = window.navigator.plugins
 

Parameters

plugins is an array of plugin objects.

Example

function pluginInfo() {
 
  alert(window.navigator.plugins.item(0).name);
 
}
 
// returns "Shockwave for Director"
 

Notes

The plugin objecct exposes a small interface for getting information about the various plugins installed in your browser.

Specification

DOM Level 0. Not part of specification.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX