I am running a Windows 7 (64 bit) with IE 11
having the following navigator.userAgent
:
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2;
.NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0;
.NET4.0C; .NET4.0E)"
I want to be able to detect the version of IE before I can display anything on my site. In other words, the company I work at have updated most of the computers to run IE11 or Chrome. But some computers still have IE9.
I want my site to work properly for people running IE11 or chrome. Any other version of the browser should be detected and the user informed to update his machine.
All the code I found on SO references v11
being part of the userAgent
string, but that is not the case here.
Edit: I also tried:
var isIE11 = !!(navigator.userAgent.match(/Trident/)
&& !navigator.userAgent.match(/MSIE/));
//value is false in IE6/IE9/IE11
var isIE11 = !!(navigator.userAgent.match(/Trident/)
&& navigator.userAgent.match(/rv 11/));
//value is false in IE6/IE9/IE11
var isIE11 = !(window.ActiveXObject) && "ActiveXObject" in window;
//value is false in IE6/IE9/IE11
What can be done to detect IE11?
Edit 2: this link http://kangax.github.io/compat-table/es6/ has a way to check hoisted ...
feature that only runs on IE11. So I also tried this:
{ function f() { return 1; } }
function g() { return 1; }
{ function g() { return 2; } }
{ function h() { return 1; } }
function h() { return 2; }
alert( f() === 1 && g() === 2 && h() === 1); // alerts false in all ie versions
If only IE browsers are connecting to the page, then test for
hoisted block-level function declaration
as only supported in IE11+Update: screenshot of it working on IE11