I have just installed IE9 beta and on a specific site I created (HTML5) IE9 jumps to compatibility mode unless I manually tell it not to. I have tried removing several parts of the website but no change. Including removing all CSS includes. On some other website of me it goes just fine.

Also, don't set it manually because then IE9 remembers the user setting and you can't turn it back to automatic (or at least I haven't found how, not even via private browsing and emptying cache)

Anyway. The site where it jumps to compatibility mode: http://alliancesatwar.com/guide/
One where it renders correct: http://geuze.name/basement/ (I can't post more than 1 hyperlink)

Both use the same doctype and all. Those sites have a lot in common(apart from appearance) using the same basic template(encoding, meta tags, doctype and the same javascript)

It would be great if someone has an answer for me! An HTML5 website that renders in IE7-mode is pretty... lame.

Thanks in advance,

Rene Geuze

link|improve this question
3  
Please explain "jumps into compatibility mode"? If you see the page refresh and a balloon that says that IE has refreshed this page in Compatibility View due to a problem, this means you've found an IE bug called a "hard assert" which is similar to a crash in the rendering engine. We're interested in finding and fixing these; please file a bug at connect.microsoft.com/ie. Thanks! – EricLaw -MSFT- Oct 1 '10 at 14:31
feedback

6 Answers

up vote 73 down vote accepted

Works in IE9 documentMode for me.

Without a X-UA-Compatible header/meta to set an explicit documentMode, you'll get a mode based on:

  • whether the user has clicked the ‘compatibility view’ button in that domain before;
  • perhaps also whether this has happened automatically due to some other content on the site causing IE8/9's renderer to crash and fall back to the old renderer;
  • whether the user has opted to put all sites in compatibility view by default;
  • whether IE thinks the site is on your intranet and so defaults to compatibility view;
  • whether the site in question is in Microsoft's own list of websites that require compatibility view.

You can change these settings from ‘Tools -> Compatibility view settings’ from the IE menu. Of course that menu is now sneakily hidden, so you won't see it until you press Alt.

As a site author, if you're confident that your site complies to standards (renders well in other browsers, and uses feature-sniffing to decide what browser workarounds to use), I suggest using:

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

or the HTTP header:

X-UA-Compatible: IE=Edge

to get the latest renderer whatever IE version is in use.

link|improve this answer
36  
Does anyone else here remember the days of rabbit ear antennas for TVs where you had to hold one arm up in the air and wiggle your foot to get a good picture? That's what I feel it's like getting a good "picture" on IE. – Rob Sep 16 '10 at 12:38
13  
Important note: if IE 9 is configured to always show Intranet sites in compatibility mode, neither the meta tag nor the HTTP header will override that. – Jacob Apr 7 '11 at 19:40
7  
As Jacob mentions, IE can default to displaying all local/intranet sites to be in compat mode. Press alt -> Tools Compatability View settings, and make sure you don't have the box checked. – Cory Mawhorter Aug 15 '11 at 20:27
1  
The meta tag only worked for me when I put it right after <head> (see also the answer below). When I put it further down within the <head> element, it didn't work (I still got the torn page). – Boris van Schooten Feb 3 at 12:27
Although it's certainly easy enough to check the options mentioned above another way that this manifested itself was that localhost and http://[MachineName] rendered differently. Localhost is apparently not considered an intranet site for IE9's compatibility purposes. – Carth Feb 24 at 14:44
show 2 more comments
feedback

To force IE to render in IE9 standards mode you should use

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

Some conditions may cause IE9 to jump down into the compatibility modes. By default this can occur on intranet sites.

link|improve this answer
It works in the other website. So that shouldn't be it. Also, that meta-tag is evil since you'd manually have to update it every time there is a new IE version. – Rene Geuze Sep 16 '10 at 12:16
2  
Sorry I can't fix your problem. However, I've edited my answer to use IE=edge instead, which invokes the use of the latest engine available, always. – Delan Azabani Sep 16 '10 at 12:18
Your assumption is incorrect. The demos specify X-UA-Compatible to prevent IE from showing the Compatibility View button since if the user pushes it, the site content would not work correctly. – EricLaw -MSFT- Oct 1 '10 at 14:30
@ReneGeuze, you got it wrong. Edge always refers to the latest version of IE. – NeoSwf Mar 9 at 14:25
@Shlomi.A. The answer was edited. It first used IE=9 – Rene Geuze Apr 4 at 9:02
feedback

I put

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

first thing after

<head>

(I read it somewhere, I can't recall)

I could not believe it did work!!

link|improve this answer
You have to close the tab and open a new tab, did you try that? – Zeb Sep 22 '11 at 10:47
feedback

The site at http://www.HTML-5.com/index.html does have the X-UA-Compatible meta tag but still goes into Compatibility View as indicated by the "torn page" icon in the address bar. How do you get the menu option to force IE 9 (Final Version 9.0.8112.16421) to render a page in Standards Mode? I tried right clicking that torn page icon as well as the "Alt" key trick to display the additional menu options mentioned by Rene Geuze, but those didn't work.

link|improve this answer
1  
Remove the IE conditional comment around the meta. You are serving the page as application/xhtml+xml, so XML parsing rules are used; XML does not support conditional comments. In any case it doesn't make any sense; the browser must choose a mode before it can decide what conditional comments to interpret. – bobince Feb 3 at 13:45
feedback

Looks fine to me:

alt text

You're sure you didn't on the settings globally or something? This is a clean installation of the beta on Windows 7. The developer tools report that the page is defaulting to IE9 Standard Mode.

link|improve this answer
I had more than 1 report of this error. Though maybe it has to do with the base dir ( alliancesatwar.com ) that it renders all sub-dirs in compatibility mode as well. But then I have the question, what in the root of the website makes IE render the website in compatibility mode? So maybe at least this guide is coded right. I hope so then. – Rene Geuze Sep 16 '10 at 12:18
@Rene Strange, I just reproduced it, by clicking on the Guide link from the homepage. But this only happened once, and after a few attempts I have yet to reproduce this, just that once only – Yi Jiang Sep 16 '10 at 12:28
feedback

I went with the solution of adding the X-UA-Compatible header/meta tag with ID=edge. It's still unclear to me why several users, including me, went into compatibility mode. Seems quite random going off the responses here.

It's not my favourite option but it's done now. I already updated the website with it. Also a great tip of pressing alt to get to the tools menu.(I'm usually not an IE user so some things are a mystery to me)

Thanks all!

link|improve this answer
4  
Compatibility mode is a bit of a mystery. It wouldn’t be IE if we didn’t have to shove in some bit of odd code to make it work, would it? – Paul D. Waite Sep 16 '10 at 16:33
feedback

protected by Gabe Mar 24 '11 at 6:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.