Currently, I am in the process of developing a website with AngularJs and utilizing numerous JS scripts to address compatibility issues with Internet Explorer.
I have organized the data in JSON format, and each page is designed to fetch and display different JSON datasets using ng-repeat and ng-view. However, when using HTML5 tags within the template files, I encountered a problem where IE8 failed to style any elements inside ng-view, even with html5shiv implemented. What steps can I take to resolve this issue?
Experimenting with using div elements instead of section tags yielded working styles, leading me to believe that the problem lies in Angular not properly wrapping new HTML5 tags with innerShiv().
In short, I am becoming increasingly frustrated with dealing with IE compatibility...