We are working on Active x for a video stream when we install the active x on windows 7 IE 8,9,10 working fine but IE 11 the pop for download is not coming please help regarding the same
Asked
Active
Viewed 171 times
1
-
Which ActiveX component are you trying to load? Can you post the HTML that should be triggering it's download? – Adrian Wragg Sep 15 '14 at 09:23
-
if(checkIE()) { player=""; player=player+""; } – pradeep Sep 15 '14 at 10:42
-
this code working fine for IE 8 to 10 but 11 doest show any popup also – pradeep Sep 15 '14 at 10:48
-
Can you add the content of checkIE() to your question? That strikes me as very relevant. – Adrian Wragg Sep 15 '14 at 10:54
-
var checkIE=function() { var client = window.navigator.appName; if(client == "Microsoft Internet Explorer") { return 1; } return 0; }; – pradeep Sep 15 '14 at 11:29
1 Answers
1
Your issue isn't in the ActiveX as you suspected, but in your detection of Internet Explorer. Your code, from the comments, is:
var checkIE=function() {
var client = window.navigator.appName;
if(client == "Microsoft Internet Explorer") { return 1; }
return 0;
};
However, IE11 doesn't return Microsoft Internet Explorer
; according to MSDN it returns Netscape
. Replace your IE detection with one of the answers from How to detect IE11? instead and you should find your issue solved.

Community
- 1
- 1

Adrian Wragg
- 7,311
- 3
- 26
- 50