IE9 throws an error: "Error: internal error in Microsoft Internet extensions" when launching an angular application

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

Error: Internal error in Microsoft Internet extensions Error: Access denied.

When I debug IE dev tools, it points the code to localStorage.

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

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

+4
source share
1 answer

Are you using a local application? IE9 does not support local storage for local files.

: IE9 , -

+1

Source: https://habr.com/ru/post/1538643/


All Articles