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>