Browser plug-in detection
3 answers
AlternaTIFF has some code that does it, it looks like this: http://www.alternatiff.com/testpage.html
0
source to share
For IE, just try building it .
var installed = true;
try {
newObj = new ActiveXObject(YOUROBJECT.whatever);
} catch {
installed = false;
}
0
source to share