How to set IE11 Document mode to edge as default?

198,286

Solution 1

The rendering mode in Internet Explorer 11 can appear stuck if the site is added to your local Compatibility View list. When this happens, the rendering mode inside the developer tools and out will default to the specified compatibility settings.

While this may not be the only way a site can get on this list, Microsoft does document the steps for how to manually add a site to this list.

From Fix site display problems with Compatibility View:

To add a site to the Compatibility View list

  1. Open the desktop, and then tap or click the Internet Explorer icon on the taskbar.

  2. Tap or click the Tools button, and then tap or click Compatibility View settings.

  3. Under Add this website, enter the URL of the site you want to add to the list, and then tap or click Add.

Site Compatibility View Removal Instructions:

To remove a site from this list, follow these instructions.

  1. Go to Tools > Compatibility View settings.
  2. In the resulting dialog, click on the site you want to remove from the list.
  3. Click the Remove button.

Screenshots:

Tools - Compatibility View settings

Compatibility View settings dialog

Solution 2

You can achieve this using a meta tag as follows:

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

Solution 3

I ran into this problem with a particular webpage I was maintaining. No matter what settings I changed, it kept going back to IE8 compatibility mode.

It turned out X-UA-Compatible was set in the metadata in the head:

<meta http-equiv="X-UA-Compatible" content="IE=8" >

As I later discovered, and at least in Internet Explorer 11, you can see where it gets its "document mode" from, by going into developer tools (F12), then selecting the tab "Emulation", and checking the text below the drop down "Document mode".

Since we only support IE11 and higher, and Microsoft says document modes are deprecated, I just threw the whole thing out. That solved it.

Solution 4

I was having the same problem while developing my own website. While it was resident locally, resources opened as file//. For pages from the internet, including my own loaded as http://, the F12 Developer did use Edge as default, but not while they were loaded into IE11 from local files.

After following the suggestions above, I unchecked the box for "Display intranet Sites in Compatibility View".

That did the trick without adding any extra coding to my web page, or adding a multitude of pages to populate the list. Now all local files open in Edge document mode with F12.

So if you are referring to using F12 for locally hosted files, this may help.

Solution 5

unchecked the "Automatically detect settings" in the Local Area Network Settings (found in "Internet Options" > Connections > LAN Settings.

Share:
198,286
Pomster
Author by

Pomster

Updated on July 08, 2022

Comments

  • Pomster
    Pomster almost 2 years

    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 is stuck on IE 7?

    enter image description here

    How do I set Document mode default?

  • Ashwath
    Ashwath over 9 years
    I've used the Fix it by Microsoft to reset the IE, by using the above URL, I closed IE and reopened it. but still it shows 7 as default, any idea?
  • Admin
    Admin over 9 years
    Looks like the tag didn't show - meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"
  • David Crookes
    David Crookes about 9 years
    Resetting IE completely loses all other settings in a non-reversible way, according to that link. Not quite a solution
  • j4v1
    j4v1 about 8 years
    What worked for me was, in the last image, clear off the checkbox "Display intranet sites in Compatibility View". But still looking to set that programmatically, as intranet users may or may not be able to update such settings.
  • Dextere
    Dextere almost 8 years
    Unchecked the Checkbox "Display intranet sites in Compatibility View" worked for me.
  • Omri Luzon
    Omri Luzon over 6 years
    Why is there chrome=1 in there? Does chrome support/need this meta tag?
  • darcher
    darcher about 5 years
    @OmriLuzon chrome=1 specifies that Google Chrome frame should start if the user has it installed. IE11 has IE=edge as default. Most won't have chrome frame anymore unless your users have <IE11