I cannot display AngularJs templates in Internet Explorer 8, I have used several suggestions for using AngularJs in Internet Explorer, but I still cannot get it to work. below is my html code for the page, including the scripts that I used. Can I indicate if I am using anything that could make the code broken in Internet Explorer? I can download information about other files if someone would like to know more about this. Everything works fine in all other browsers, but just in Internet Explorer.
<!doctype html> <html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="tripApp" class="no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> <link rel="stylesheet" href="styles/main.css"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700' rel='stylesheet' type='text/css'> <style> @-moz-document url-prefix() { .filter-menu .btn { padding: 0; } } </style> <script src="bower_components/modernizr/modernizr.js"></script> </head> <body> <aside id="sidebar"> <ul class="list-unstyled"> <li><a href="#/hotels" prevent><span class="icon-briefcase icon-2x"></span></a></li> <li><a href="#/restaurants" prevent><span class="icon-food icon-2x"></span></a></li> <li><a href="#/cafe" prevent><span class="icon-coffee icon-2x"></span></a></li> </ul> </aside> <section id="topbar"> <ul class="list-unstyled"> <li><span class="icon-briefcase icon-2x"></span></li> </ul> </section> <section id="main-container"> <section ui-view id="main-inner-container"></section> </section> <script> var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']]; (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; g.src='//www.google-analytics.com/ga.js'; s.parentNode.insertBefore(g,s)}(document,'script')); </script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="bower_components/jquery-easing/jquery.easing.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script> <script src="http://angular-ui.imtqy.com/bootstrap/ui-bootstrap-tpls-0.5.0.js"></script> <script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script> <script src="http://code.angularjs.org/1.0.3/angular-resource.min.js"></script> <script src="bower_components/angular-animate/angular-animate.min.js"></script> <script src="bower_components/angular-promise-tracker/promise-tracker.min.js"></script> <script src="scripts/app.js"></script> <script src="scripts/services.js"></script> <script src="scripts/directives.js"></script> <script src="scripts/controllers/hotelsController.js"></script> <script src="scripts/controllers/restaurantsController.js"></script> <script src="bower_components/masonry/masonry.js"></script> </body> </html>
javascript html angularjs internet-explorer angular-ui
hilarl
source share