Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This meta tag (or http header) only has meaning for IE8 and up. It is a way to force IE to render the page as an older version would have. Omitting it has no effect, it only as effect if used.</p> <p>Possible values are "IE=" followed by any of the following:</p> <ul> <li>Edge - Render as whatever the latest version of IE is </li> <li>IE9 - Render as IE9 in standards mode </li> <li>Emulate IE9 - Render as IE9 but use the <code>&lt;!DOCTYPE&gt;</code> to determine the mode</li> <li>IE8 - Render as IE8 in standards mode</li> <li>Emulate IE8 - Render as IE8 but use the <code>&lt;!DOCTYPE&gt;</code> to determine the mode</li> <li>IE7 - Render as IE7 in standards mode</li> <li>Emulate IE7 - Render as IE7 but use the <code>&lt;!DOCTYPE&gt;</code> to determine the mode </li> <li>IE5 - Render as IE7 in quirks mode</li> </ul> <p>Additionally, you can add a comma followed by Chrome=1 to tell IE to render the page using Google Chrome Frame if it is installed. So you might have a tag that looks like this:</p> <pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"&gt; </code></pre> <p>Or, instead of that, you can also specify to use GCF for for a specific version of IE and below like this:</p> <pre><code>&lt;meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"&gt; </code></pre> <p>Which means to use GCF if it is installed and IE is at version 8 or below otherwise, render as the latest installed version of IE.</p> <p>So, it's obvious that it is useful to be able to make older versions of IE use GCF but that was probably not Microsoft's intention when they implemented this. It can be used for compatibility with old sites that only work in older versions of IE and can't be easily fixed but that's kind of silly. Personally, I find it useful for testing. Since it's generally not so simple to test multiple versions of IE from a single development machine, this provides a decent solution. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload