Created
May 7, 2014 17:43
-
-
Save ubergoober/bbbdef9e14ec028a8b10 to your computer and use it in GitHub Desktop.
Override IE Compatibility Mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
add to web.config | |
several options available | |
reference (note there are additional references on this page): | |
http://stackoverflow.com/questions/6156639/x-ua-compatible-is-set-to-ie-edge-but-it-still-doesnt-stop-compatibility-mode | |
--> | |
<system.webServer> | |
<httpProtocol> | |
<customHeaders> | |
<clear /> | |
<add name="X-UA-Compatible" value="IE=EmulateIE8" /> | |
</customHeaders> | |
</httpProtocol> | |
</system.webServer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment