Skip to content

Instantly share code, notes, and snippets.

@ubergoober
Created May 7, 2014 17:43
Show Gist options
  • Save ubergoober/bbbdef9e14ec028a8b10 to your computer and use it in GitHub Desktop.
Save ubergoober/bbbdef9e14ec028a8b10 to your computer and use it in GitHub Desktop.
Override IE Compatibility Mode
<!--
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