This script displays and sorts the installed plugins. However, I'm unable to remove duplicate names. Can anyone help?
Thanks in advance!
<script language="JavaScript">
if (navigator.plugins.length)
{
var num_of_plugins = navigator.plugins.length;
if (num_of_plugins > 0)...
Try this. It doesn't handle duplicate names (couldn't get it to work, anyone else??).
Good luck!
<script language="JavaScript">
if (navigator.plugins.length)
{
var num_of_plugins = navigator.plugins.length;
if (num_of_plugins > 0)
{
var c = new Array();
for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.