0

I am developing an intranet site that must be in IE8 standards mode. By default, intranet sites are set to compatibility mode.

Is there any way to set that with a metadata tag? does not appear to be working.

If the user must change something on their computer, is it possible to set this single intranet site as a site that must be viewed in standards mode?

Thanks!

Chris

Mister Epic
  • 16,295
  • 13
  • 76
  • 147

1 Answers1

1

You can send an HTTP header (or the equiv Meta tag) to force IE8, IE9, etc. or Edge rendering:

<!-- Latest standards -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>

or a specific IE version...

<!-- Standards (as IE8 handled them) -->
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
scunliffe
  • 62,582
  • 25
  • 126
  • 161