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
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.
User contributions licensed under CC BY-SA 3.0