Mega Code Archive

 
Categories / JavaScript Tutorial / Navigator
 

Navigator plugins

The plugins property returns an array of the Plugins object representing all the plug-ins installed on a particular browser. These can be accessed by the indexed num passed. <html>     <head>     <title> Example of the plugins property of the navigator object</title>     </head>     <body>     <script language="JavaScript">     <!--     var plugLength = navigator.plugins.length     for(i=0; i<plugLength; i++){          document.write(navigator.plugins[i].name);     }     -->     </script>     </body>     </html>