navigator.plugins : Navigator Object : Navigator JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Navigator » Navigator Object »

 

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>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Navigator
» Navigator Object