Skip to content Skip to sidebar Skip to footer

Force Ie Compatibility Mode Off In Ie Using Tags For Browser Mode

I am using html5 with angularJs using follwoing tag This results in Browser mode set to IE8 Compat, and Document mode set to IE8 Standards.

Solution 1:

You want IE=edge, it will force the browser to use the latest version it has (IE8 will act as IE8, not compatibility mode) and removes the button for compatibility mode. This will give the best results for AngularJS

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

Also, if you are running the site locally, IE will pick up on that and force compatibility mode on. You can change this setting in IE, go to Tools –> Compatibility ViewSettings -> Uncheck "Display intranet sites in Compatibility View".

enter image description here

Post a Comment for "Force Ie Compatibility Mode Off In Ie Using Tags For Browser Mode"