I am using IE11 and my application is uspposed to run on all browsers (cross browser compatible).
In Internet explorer the website sappears strange when hosted in intranet zone because of backward compatibility feature of IE which detects the intranet sites and switches the document mode from IE11 to IE7.
To avoid the intranet websites from displaying in document mode IE7 I have added the below tag in my config so that my website when hosted in intranet zone does not render in document mode IE7 and renders in IE11 itself.
I want to know ...does the below tag have side effects and affect chrome and other browsers? Or it will not matter and only solve my IE problem.
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE=Edge" />
</customHeaders>
</httpProtocol>