Hi,
I developed a site with API and MVC.
in MVC, I am using Angular JS to load partial view.
it is working correctly in chrome.
but in IE 10 is not working, it shows error as “angular is undefined”.
i called angular js as follows:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.js"></script>
<script src="https://code.angularjs.org/1.3.15/angular-route.js"></script>
<script src="~/Scripts/AngularJS/app.js"></script>
inside app.js, i used the following code:
var app = angular.module(“app”, [‘ngRoute’, ‘http-error-handling’]);
in this line, it throws exception as “angular is undefined”
Thank You
Honey Asin