h1

Set Document mode standard/Edge in IE

September 2, 2015

set Document mode standard/Edge in IE
Code :

Add meta tag in web page
<meta http-equiv=”X-UA-Compatible” content=”IE=edge” />

If you are using .net you can add this to the web.config

<system.webServer>
    <httpProtocol>
     <customHeaders>
        <add name="X-UA-Compatible" value="IE=edge" />
      </customHeaders>
    </httpProtocol>
</system.webServer>

Leave a comment