My application is trying to load the angular module discApp . This is working without any issues in Chrome . But in IE11 i am getting an error like below
object doesn't support property or method 'module' .
Angular Version is using is v1.5.5. If i try ctrl+F5 its loading correctly . Is there any way to fix this issue? My Js Code where the error throwing in IE is below .
'use strict';
var discApp = angular.module('discApp', ['discApp.controllers']); //Error in this line
Below is the code where i am adding the angular.js
<script>document.write("<script type='text/javascript'
src='js/angular/angular.js?v=" + Date.now() + "'><\/script>");</script>