IE force compatibility view
Alright.. so we all are aware of the browser compatibility issues. Specially when it come to any of those Internet explorers. Most of the times I have faced issues that a website works perfectly in in IE8 but not in IE9 which is weird.
Her is a small trick to enable back word compatibility from IE9 to IE7.
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
you can replace the “EmulateIE[version]“
usage
<!-- if you want ie8 to work as ie7, you ca replace the versions as per you needs. --> <!--[if IE 8]> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <![endif]--> <!--if you want to enforce ie9 to be as ie8--> <!--[if IE 9]> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" /> <![endif]-->
hope it helps you guys. but i hate microsoft..
