Angular application error in IE 11. Everything works fine in Chrome

0

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, column 1 in http://localhost:54896/Scripts/Angular/angular.js

0x800a138f - JavaScript runtime error: Unable to get property 'prototype' of undefined or null reference
javascript
angularjs
asked on Stack Overflow Nov 1, 2016 by (unknown user)

1 Answer

1

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

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

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

answered on Stack Overflow Nov 1, 2016 by Fernando Farias

User contributions licensed under CC BY-SA 3.0