Tuesday, 7 March 2017

javascript - IE9 throws the error: 'Error: An internal error occurred in the Microsoft Internet extensions' when running angular app

I'm getting the error in IE9 when loading my app: 


Error: An internal error occurred in the Microsoft Internet extensions


Error: Access is denied.



When I debug in IE's dev tools, it points to code regarding localStorage.



if (localStorage) {
// some code
} else {
// some code
}



I'm not sure whether this is an angular-IE issue, or if it's just IE related. Thanks in advance!

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...