The NavigatorPlugins mixin adds to the web.Navigator
interface
and properties for discovering and interacting with plugins installed
the browser.
The NavigatorPlugins mixin adds to the `web.Navigator` interface and properties for discovering and interacting with plugins installed the browser.
(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`
(mime-types this)
Property.
Returns a web.MimeTypeArray
object, which contains a list of
objects representing the MIME types recognized by 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. Returns a `web.MimeTypeArray` object, which contains a list of objects representing the MIME types recognized by 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`
(plugins this)
Property.
Returns a web.PluginArray
object, listing the web.Plugin
describing the plugins installed in the application.
`var plugins = navigator.plugins;
plugins is web.PluginArray
object used to access web.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. Returns a `web.PluginArray` object, listing the `web.Plugin` describing the plugins installed in the application. `var plugins = navigator.plugins; plugins is `web.PluginArray` object used to access `web.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`
(set-mime-types! this val)
Property.
Returns a web.MimeTypeArray
object, which contains a list of
objects representing the MIME types recognized by 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. Returns a `web.MimeTypeArray` object, which contains a list of objects representing the MIME types recognized by 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`
(set-plugins! this val)
Property.
Returns a web.PluginArray
object, listing the web.Plugin
describing the plugins installed in the application.
`var plugins = navigator.plugins;
plugins is web.PluginArray
object used to access web.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. Returns a `web.PluginArray` object, listing the `web.Plugin` describing the plugins installed in the application. `var plugins = navigator.plugins; plugins is `web.PluginArray` object used to access `web.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`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close