html5 - IE-Edge Compatible mode issue with AngularJS -
my angularjs web application working fine in dev environment expected once deployed higher environment . while running/browsing application in ie edge application default selecting 8 , application not working since ie 8 wont support angularjs.
so tried changing meta tag override compatible view setting in code follows
trial 1
<!doctype html> <html> <head> <meta http-equiv="x-ua-compatible" content="ie=edge">
here in place of content tried possible options like
ie=edge,11,emulateie11,10,emulateie10,9,emulateie9
trial 2
<system.webserver> <httpprotocol> <customheaders> <add name="x-ua-compatible" value="ie=edge" /> </customheaders> </httpprotocol> </system.webserver>
i tried in possible ways while browsing application default selecting ie mode 8 , application not working.
note: it's intranet site compatible settings enabled in ie. before upgrading ie 10 11, application , running correctly without override compatibility code.
my hosted environment has compatible view settings default trying override default setting above trials no luck. in fiddler http response header can see x-ua-compatible edge , in view source can see:
<html> <head> <meta http-equiv="x-ua-compatible" content="ie=edge">
fyi https://github.com/microsoftedge/microsoftedgelauncher/issues/14
i experiencing issue yesterday. browsed quite sometime why occurring. worked when tested localhost application server, when moved server machine intranet access, started getting distorted in ie. realized whenever ie being launched, it's launched in compatibility mode ie7 default intranet pages.
tried <meta http-equiv="x-ua-compatible" content="ie=edge">
first meta tag , worked me.
i glad see got worked out getting group policy settings updated.
Comments
Post a Comment