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
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?"