'plugins' Example : plugins 2 « Javascript Collections « JavaScript DHTML






'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