AvailabilityNetscape 3 Synopsisnavigator.plugins[i] navigator.plugins['name'] Properties
var sw_installed = (navigator.plugins["Shockwave"] != null); ElementsThe array elements of the Plugin object are MimeType objects that specify the data formats supported by the plugin. DescriptionA plugin is a software module that can be invoked by Netscape to display specialized types of embedded data within the browser window. In Netscape 3, plugins are represented by the Plugin object. This object is somewhat unusual in that it has both regular object properties and array elements. The properties of the Plugin object provide various pieces of information about the plugin, and its array elements are MimeType objects that specify the embedded data formats that the plugin supports. Plugin objects are obtained from the plugins[] array of the Navigator object. navigator.plugins[] may be indexed numerically when you want to loop through the complete list of installed plugins, looking for one that meets your needs (for example, one that supports the MIME type of the data you want to embed in your web page). This array can also be indexed by plugin name, however. That is, if you want to check whether a specific plugin is installed in the user's browser, you might use code like this: document.write( navigator.plugins("Shockwave") ? "<embed src="movie.dir' height=100 width=100>" : "You don't have the Shockwave plugin!" ); The name used as an array index with this technique is the same name that appears as the value of the name property of the Plugin. Don't confuse the fact that Plugin objects are stored in an array of the Navigator object with the fact that each Plugin object is itself an array of MimeType objects. Because there are two arrays involved, you may end up with code that looks like this: navigator.plugins[i][j] // The jth MIME type of the ith plugin navigator.plugins["LiveAudio"][0] // First MIME type of LiveAudio plugin Finally, note that while the array elements of a Plugin object specify the MIME types supported by that plugin, you can also determine which plugin supports a given MIME type with the enabledPlugin property of the MimeType object. See Also |