Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

-1 votes
2 answers
325 views

IE default version is changed to 7 automatically

i have added the bellow piece of code in my js file. var meta = document.createElement('meta'); meta.httpEquiv = "X-UA-Compatible"; meta.content = "IE=edge, IE=11, IE=10, IE=9"; document....
abdul raheem's user avatar
2 votes
1 answer
3k views

How to set document mode default version IE-7 to IE-11 with Application?

I am using IE-11. And I am implementing application. So when I am opening with localhost then it is opening with IE-11, But When I deployed in server and then it opening with IE- version 7. I have ...
Varun Sharma's user avatar
  • 4,822
11 votes
2 answers
14k views

Check javascript compatibility with Internet explorer

I have some javascript code that does not run in IE 11. Is there a quick way to check where the incompatibly is other than going through the code line by line to see what commands and statements are ...
takinola's user avatar
  • 1,723
0 votes
1 answer
198 views

IE11 - Webpage working with active developer tools... What are they doing?

I have a web page here that is not working properly. (It's the group manager plugin of the SCM-Manager, but that's an unimportant detail. If I try to add a group member, the member is not shown in ...
nintendoluk's user avatar
1 vote
1 answer
2k views

IE11 User Agent String issue

I am using compatibility mode in IE11. I am using below code to set compatibility mode: <meta http-equiv="x-ua-compatible" content="IE=8"> Now when I run my webpage some of functionality is ...
Nalu's user avatar
  • 1,117
0 votes
2 answers
821 views

Coding a web page that works in IE8 but breaks in IE11

I'm trying to demonstrate to some folks in a seminar how particular elements (be they html tags, css defined styles or JavaScript behaviors) that were coded to work properly in IE7, also works in IE8, ...
dihakz's user avatar
  • 557
98 votes
5 answers
131k views

IE11 Document mode defaults to IE7. How to reset?

My Internet Explorer 11 on my Windows 8.1 Surface tablet defaults to document mode 7, causing a lot of websites to render wrongly. When I open the Developer tools, it states that it defaults to ...
jim's user avatar
  • 1,143
103 votes
10 answers
164k views

Internet Explorer 11 disable "display intranet sites in compatibility view" via meta tag not working

I have been working on an intranet website for over 6 months were I have been using the below html5 doctype and edge compatibility meta tag to force Internet Explorer to not emulate an older browser ...
Pricey's user avatar
  • 5,879
12 votes
1 answer
31k views

IE 11 Enterprise Mode vs Compatibility Mode and Native Mode

I want to test my web sites for Internet Explorer 11. I have esearched IE11 compatibility modes but couldn't understand the difference between compatibility mode and enterprise mode? These are the ...
Ozgur's user avatar
  • 135
0 votes
1 answer
3k views

IE11: overflow: hidden doesn't work

It's not the IE6 bug of position: relative mentioned here, and I couldn't figure out why. When the child div animates beyond its parent's border some part of it still flickers for a split second ...
Lucia's user avatar
  • 13.4k
66 votes
8 answers
204k views

How to set IE11 Document mode to edge as default?

I have Internet Explorer installed on my computer but needed to test compatibility mode of IE 7. After changing the document mode to IE 7, it set it as default and now I can't change it. The default ...
Pomster's user avatar
  • 15k
19 votes
4 answers
35k views

Force IE 11 "User agent string" using tags

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 ...
Emanuele Greco's user avatar