Skip to content

Instantly share code, notes, and snippets.

@massahud
Last active August 29, 2015 13:56
Show Gist options
  • Save massahud/8845223 to your computer and use it in GitHub Desktop.
Save massahud/8845223 to your computer and use it in GitHub Desktop.
Disable IE compatibility mode with Primefaces

Disable IE compatibility mode with PrimeFaces

Add this to the xhtmls that you want to disable compatibility rendering, because the meta X-UA-Compatible must come before any tag that starts the rendering engine.

<h:head>
  <f:facet name="first">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  </f:facet>
</h:head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment