'plugins' Example : plugins 2 « Javascript Collections « JavaScript DHTML
- JavaScript DHTML
- Javascript Collections
- plugins 2
'plugins' Example
<html>
<body>
<button onclick="alert(navigator.plugins.length);">length</button>
<button onclick="alert(navigator.plugins[0].description);">mimetype</button>
<button onclick="alert(navigator. plugins[0].filename);">suffixes</button>
<button onclick="alert(navigator.plugins[0].name);">type</button>
</body>
</html>
Related examples in the same category