Liking cljdoc? Tell your friends :D

web.dom.NavigatorPlugins

The NavigatorPlugins mixin adds to the web.performance.Navigator methods and properties for discovering and interacting with plugins into the browser.

The NavigatorPlugins mixin adds to the `web.performance.Navigator`
methods and properties for discovering and interacting with plugins
into the browser.
raw docstring

java-enabledcljs

(java-enabled this)

Method.

This method indicates whether the current browser is Java-enabled not.

result = window.navigator.javaEnabled()

See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/javaEnabled

Method.

This method indicates whether the current browser is Java-enabled
not.

`result = window.navigator.javaEnabled()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/javaEnabled`
sourceraw docstring

mime-typescljs

(mime-types this)

Property.

[Read Only]

Returns a web.other.MimeTypeArray object, which contains a of web.other.MimeType objects representing the MIME types recognized the browser.

`var mimeTypes[] = navigator.mimeTypes;

mimeTypes is a MimeTypeArray object which has a length property as well as item(index) and namedItem(name) methods.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/mimeTypes

Property.

[Read Only]

Returns a `web.other.MimeTypeArray` object, which contains a
of `web.other.MimeType` objects representing the MIME types recognized
the browser.

`var mimeTypes[] = navigator.mimeTypes;

mimeTypes is a MimeTypeArray object which has a length property as well as item(index) and namedItem(name) methods.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/mimeTypes`
sourceraw docstring

pluginscljs

(plugins this)

Property.

[Read Only]

Returns a web.other.PluginArray object, listing the web.other.Plugin describing the plugins installed in the application.

`var plugins = navigator.plugins;

plugins is web.other.PluginArray object used to access web.other.Plugin objects either by name or as a list of items.

The returned value 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.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/plugins

Property.

[Read Only]

Returns a `web.other.PluginArray` object, listing the `web.other.Plugin`
describing the plugins installed in the application.

`var plugins = navigator.plugins;

plugins is `web.other.PluginArray` object used to access `web.other.Plugin` objects either by name or as a list of items.

The returned value 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.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/NavigatorPlugins/plugins`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close