professional-javascript-18-PluginsExample.htm / htm
<html> <head> <title>Plugins Example</title> </head> <body> <script type="text/javascript"> if (navigator.mimeTypes) { document.writeln("<h3>Loaded Plugins (Mozilla only):</h3>"); document.writeln("<ul>"); for (var i=0; i < navigator.plugins.length; i++) { document.writeln("<li>" + navigator.plugins[i].name + " (" + navigator.plugins[i].description + ")</li>"); } document.writeln("</ul>"); } </script> </body> </html>
(C) Æliens 20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.