vote up 1 vote down star
1

Normally when you use VBScript or JavaScript to CreateObject to detect a plug-in, the user gets the somewhat "jarring" security exception.

What are some good ways to detect IE browser plugins without actually instantiating the object?

flag

1 Answer

vote up -1 vote down

While I am not sure of a way to check withing creating the object, you can still get around the security exceptions by using the javascript try-catch block.

For example:

function checkForObject() {
   try{
      var conn = new ActiveXObject('Msxml2.XMLHTTP');
      return true;
   } catch (e) {
      return false;
   }
}

In this case, the actual error is captured and hidden from the user.

link|flag
This is still instantiating the object – Danny G May 6 at 3:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.