My website is broken in IE11.
We all know that HTML tags allow developer to force IE compatibility mode; in example
<meta http-equiv="X-UA-Compatible" content="IE=8, IE=9" />
worked great and solved the visualization problems for IE10.
But actually on IE11, even if Compatibility mode
is set to IE9
, User agent string
is set to default
and javascript doesn't work.
Changing manually User agent string
to IE10
solved my problems.
For shure I'm going to solve the real problems that cause website errors, but actually I need a fast, programatic way to force "User agent string" to IE10, since I can't contact every user.
Can someone help?