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
                   2009-09-22 20:56:13
                
              
                
                A: 
                
                
              
            AlternaTIFF has some code that does that, it looks like: http://www.alternatiff.com/testpage.html
                  lod3n
                   2009-09-22 20:58:16
                
              
                
                A: 
                
                
              
            For IE just try to create it.
var installed = true;
try {
  newObj = new ActiveXObject(YOUROBJECT.whatever);
} catch {
  installed = false;
}
                  jeffamaphone
                   2009-09-22 20:58:46