Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am working on a AngularJs project at the moment and we also need to give support to IE8.</p> <p>Everything is working fine as expected.</p> <p>I took a look at your code and I can see you have included few things to make AngularJs work with IE 8.</p> <p>But at the same time I think you missed some bits, so it's worthwhile take a look again at <a href="http://docs.angularjs.org/guide/ie" rel="noreferrer">this page - AngularJs IE</a></p> <p>As we are dealing with a really <strong><a href="http://theie8countdown.com/" rel="noreferrer">unreliable</a></strong> browser as IE 8, I would strongly suggest you to follow the instructions on the page word by word.</p> <p>For example: I didn't find this line on your code above <code>&lt;html xmlns:ng="http://angularjs.org"&gt;</code></p> <p>You also wrote this line <code>&lt;body id="ng-app" ng-app="maxmythicApp"&gt;</code></p> <p>BUT the official page suggests this format: <code>&lt;html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="optionalModuleName"&gt;</code></p> <p>And you put the <strong>ng-app</strong> inside the <code>&lt;body&gt;</code> tag instead of the <code>&lt;html&gt;</code>.</p> <p>These details might not make a big difference for modern (and decent) browsers, but we are talking about <a href="http://theie8countdown.com/" rel="noreferrer">IE 8</a> so every little details does matter - ('<strong>play by the book</strong>').</p> <p><strong>About the hash(#</strong>), that's a normal behaviour of AngularJs. AngularJS offers two configuration modes to control the format of the URL: <strong>Hashbang mode</strong> (the default) and the <strong>HTML5 mode</strong> which is based on using the HTML5 History API.</p> <p>IE8 clearly doesn't support HTML 5 history API so the Hashbang mode is used instead.</p> <p>You can read about all of this <a href="http://docs.angularjs.org/guide/dev_guide.services.$location" rel="noreferrer">here</a>.</p> <p>Hope that helps.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload