AngularJS does not work in Internet Explorer 8
angularjs
Solution
Add this meta tag in inside of Header tag
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
Look like
<head>
<meta charset="utf-8">
<title>Sample App</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
</head>
I hopes, it's helps to you. Cheer's...
Problem
I have a AngularJS page that I am attempting to display in IE 8. Below is my HTML ``` <html id="ng-app" ng-app=""> <head> <script type='text/javascript' src='http://cdnjs.cloudflare.com/ajax/libs/json3/3.3.0/json3.min.js'></script> <script src="http://docs.angularjs.org/angular.min.js"></script> </head> <BODY ng-app=""> <script type="text/javascript"> function cstScope($scope) { $scope.LEVEL = "x1 "; $scope.change = function() { alert("changed"); }; } </script> <div ng-controller="cstScope"> <input type=text ng-model="LEVEL" ng-change="change()"></input> </div> </BODY> </html> ``` It falls over when the page is loading with ``` Line: 30 Error: [$sce:iequirks] http://errors.angularjs.org/1.2.14-build.2316+sha.24fe163/$sce/iequirks ``` I have tried adding JSON3 and ieshiv but no luck.