views:

73

answers:

3

Anyone know how to determine if a particular plugin is installed on a user's browser? The plugin in question is AlternaTIFF.

+1  A: 

I believe navigator.plugins gives you access to that information, it has name, description, and supported mimetypes of each plugin.

olliej
A: 

AlternaTIFF has some code that does that, it looks like: http://www.alternatiff.com/testpage.html

lod3n
A: 

For IE just try to create it.

var installed = true;
try {
  newObj = new ActiveXObject(YOUROBJECT.whatever);
} catch {
  installed = false;
}
jeffamaphone