The enabledPlugin property determines which plug-in is configured for a specific MIME type.
<html> <head> <title> Using the enabledPlugin property of the MimeType object</title> </head> <body> <script language="javascript"> <!--- for (i=0; i < 3; i++) { document.write("MimeType enabledPlugin " + i + " : "); document.writeln(navigator.mimeTypes[i].enabledPlugin); document.write("<br>"); } --> </script> </body> </html>