0

I've seen many answers to this issue like this:

if (typeof(navigator.mimeTypes["application/x-skype"]) == "object") {
     return true;
} 
else return false;

But it doesn't seem to work, I have skype installed in my PC and in my android, and both return false.

I tried to find, and skype doesn't have any mimetype register. Is there another way to verify?

Thanks :)

Marcio Oliveira
  • 791
  • 1
  • 5
  • 18

1 Answers1

0

You can try to add one more check it like this:

if (new ActiveXObject("Skype.Detection")) 
   return true;
Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331