Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><em>Server Side solution is the recommended one, as @TimmyFranks proposed in his answer, but if one needs to implement the <code>X-UA-Compatible</code> rule on the page level, please read the following tips, to benefit from the experience of the one who already got burned</em></p> <hr> <p>The <code>X-UA-Compatible</code> meta tag <strong>must</strong> appear straight after the title in the <code>&lt;head&gt;</code> element. No other meta tags, css links and js scripts calls can be placed before it.</p> <pre><code>&lt;head&gt; &lt;title&gt;Site Title&lt;/title&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"&gt; &lt;meta charset="utf-8"&gt; &lt;script type="text/javascript" src="/jsFile.js"&gt;&lt;/script&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&gt; &lt;link rel="apple-touch-icon" href="/apple-touch-icon.png" /&gt; &lt;link rel="shortcut icon" href="/apple-touch-icon.png" /&gt; &lt;/head&gt; </code></pre> <p>If there are any <strong>conditional comments</strong> in the page (lets say located in the <code>&lt;html&gt;</code>), they must be placed under, after the <code>&lt;head&gt;</code>.</p> <pre><code>// DON'T: place class inside the HTML tag &lt;!--[if gt IE 8]&gt;&lt;!--&gt; &lt;html class="aboveIe8"&gt; &lt;!--&lt;![endif]--&gt; // DO: place the class inside the BODY tag &lt;!--[if gt IE 8]&gt;&lt;!--&gt; &lt;body class="aboveIe8"&gt; &lt;!--&lt;![endif]--&gt; </code></pre> <p>Html5BoilerPlate's team wrote about this bug - <a href="http://h5bp.com/i/378" rel="nofollow noreferrer">http://h5bp.com/i/378</a> They have several solutions.</p> <p>Regarding Intranet &amp; Compatibility view, there're settings when you go to tools > Compatibility view settings.</p> <p><img src="https://i.stack.imgur.com/2H54p.jpg" alt="Compatibility view settings"></p>
    singulars
    1. This table or related slice is empty.
    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