Internet Explorer 11 D3 javascript error - access to SCRIPT5 is denied

I am trying to open this D3 along with this json on IE11 but the screen is just blank. When I check the item to check the console it shows this error:

SCRIPT 5: Access Denied.
File: d3.min.js, Line: 1, Column: 10922

I've tried many fixes like downgrading security, enabling active content, adding certain tags to html, etc., and looking at similar stackoverflow questions, but no luck. It works fine in Firefox though.
How do I make it work in IE?

+3


source to share


2 answers


Decision. I put the files on the Sharepoint server and it worked. IE does not allow linking files on the local desktop due to some policy, but if it's part of IIS, that's okay.



0


source


This is IE 11 intrinsic security. Microsoft automatically detects the "harmful" script and file and denies access. Basically, you need to check the options tab, or try trying:

  <meta http-equiv="X-UA-Compatible" content="IE=edge" />

      



Tty also allows customizations and makes sure add-ons are allowed in your IE.

0


source







All Articles