IE browser script to determine which (if any) ActiveX control will handle specific mime type
- by Jay13
I'm trying to figure out in an IE script (javascript or vbscript) which ActiveX control will handle a specific mime type, "image/tiff" in this case. This is easy to do in other browsers that use plugins with;
navigator.mimeTypes["image/tiff"].enabledPlugin.name
which would return something like
QuickTime Plug-in X.X.X
I've found plenty…