You are here: Reference > JavaScript > client-side > browser > properties > name (plugin)

name property (plugin)

Browser support:
Returns the name of the plugin specified by the application manufacturer.
Use the description property to get the description, or the filename property to get the filename of the plugin.

Syntax:

object.name;
You can find the related objects in the Supported by objects section below.
This property is read-only.

Possible values:

String that represents the name.
Default: this property has no default value.

Example HTML code 1:

This example illustrates the use of the name property:
<head>
    <script type="text/javascript">
        function GetPlugins () {
            var message = "";
                // Internet Explorer supports the plugins collection, but it is always empty
            if (navigator.plugins && navigator.plugins.length > 0) {
                var plugins = navigator.plugins;
                for (var i=0; i < plugins.length; i++) {
                    message += "<b>" + plugins[i].name + "</b> : " + plugins[i].description + "<br />";
                }
            }
            else {
                message = "Your browser does not support this example!";
            }

            var info = document.getElementById ("info");
            info.innerHTML = message;
        }
    </script>
</head>
<body onload="GetPlugins ()">
    <div id="info" style="width:500px; height:300px; overflow:auto; background-color:#e0d0d0;"></div>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content