Browser plug-in detection

Does anyone know how to determine if any particular plugin is installed in the user's browser? This plugin is AlternaTIFF.

+2


source to share


3 answers


I believe it navigator.plugins

gives you access to this information, has a name, description and supported mimties for each plugin.



+2


source


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



0


source


For IE, just try building it .

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

      

0


source







All Articles