Skip to content Skip to sidebar Skip to footer

Angular Application Error In Ie 11. Everything Works Fine In Chrome

I am developing an angular application. The application is working fine in Chrome but in IE( I am using IE11) I am getting the following error. Unhandled exception at line 2930, co

Solution 1:

Put this meta tag in the head of your html file index:

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

This will force the browser to render with the latest version documents.

Post a Comment for "Angular Application Error In Ie 11. Everything Works Fine In Chrome"