Skip to content Skip to sidebar Skip to footer

How To Prevent Ie From Opening My Page In Compatibility Mode?

I have this html/jsp page: <%@page contentType='text/html' pageEncoding='UTF-8'%> which, for some reason, is opened by defau

Solution 1:

insert meta tag in header HTML:

<metahttp-equiv="X-UA-Compatible"content="IE=Edge"/>

The "edge" forces standards mode (or latest rendering engine) in IE.

To force IE8 to standard mode.

<metahttp-equiv="x-ua-compatible"content="IE=8">

Post a Comment for "How To Prevent Ie From Opening My Page In Compatibility Mode?"