In IE8, the Microsoft introduced a new mode called compatibility mode which would render the page like IE7.

You can see this button next to address bar in stackoverflow.com. But when you access google.com / live.com, you would not see the compatibility mode button. How do we make sure the pages don't show this button the user?

link|improve this question

feedback

3 Answers

up vote 41 down vote accepted

Short answer:

Put this in your head tag to tell the browser that your page works in IE 8:

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

Also as per Jon Hadleys comment, to ensure the latest (not just IE8) rendering engine is used, you could use the following:

<meta http-equiv="X-UA-Compatible" content="IE=edge">
link|improve this answer
9  
To ensure the latest (not just IE8) rendering engine is used, add the following: <meta http-equiv="X-UA-Compatible" content="IE=edge"> – Jon Hadley Mar 24 '11 at 15:22
feedback

From here:

Sometimes the Compatibility View button isn’t displayed.

The button is located on the address bar next to the ‘stop’ and ‘refresh’ buttons. There are a few cases where there’s no action for a user take and, thus, the Compatibility View button will not show:

If you're viewing an internal-to-Internet Explorer page (such as about:InPrivate)

If you're viewing a page that has declared it's "ready" for Internet Explorer 8 through use of the versioning tag / HTTP header (it doesn’t matter if this tag triggers Quirks, IE7 Standards, or IE8 Standards, the button won’t be displayed)

If you're viewing an intranet page and you have the ‘Display intranet sites in Compatibility View’ checkbox selected If you're viewing any webpage and you have the ‘Display all websites in Compatibility View’ checkbox selected

If you're viewing a webpage that is included on the Microsoft-supplied compatibility view updates list and you have the ‘Include updated website lists from Microsoft’ checkbox selected

If you've toggled either the ‘Document Mode’ or ‘Browser Mode’ settings via the Developer Toolbar

So you're probably after the versioning tag / HTTP header which is described in more details in that blog post and over here.

link|improve this answer
2  
Isn't it wonderful how Microsoft relies on personal employee blogs for documentation now days? Searching Google, all I ever got were long-winded and out-dated blog posts. – Frank Krueger Jul 14 '09 at 0:14
2  
The blogs do seem to weigh highly in Google's search results. To be fair, the blog post I've quoted here was essentially one big link to a proper MSDN article, so the formal documentation does exist. – Matt Hamilton Jul 14 '09 at 0:47
feedback

If the "Display intranet sites in Compatibility View" or "Display all websites in Compatibility View" settings (found under Tools -> Compatibility View Settings) are enabled (as they relate to the website being viewed), then no matter what you have in the HTML of the document, the page will always be put in to some form of compatibility view.

This means that, even with in the document, you will still notice that the page is put in to compatibility view, and nothing you can do except disabling those settings will disable it, unfortunately.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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