Encountering an error loading this D3 visualization on Internet Explorer 11 in Windows 7:
SCRIPT 5 : Access is denied
d3.min.js, Line: 1, Column: 10922
According to information from msdn, the issue seems to be related to Same-Origin Policy despite having all necessary files - d3.min.js, flare.json, and html file - saved locally within the same directory. Attempts to adjust Security settings and adding
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
did not resolve the issue.
The visualization functions without errors on Firefox & Chrome but not in IE when accessing json data from external files as compared to including data directly in the html as a javascript variable like var data = {"name":"flare",...}
.
Does this mean it's not feasible to run in IE?
EDIT-SOLUTION: The problem was localized to my local system. Uploading the files to a Sharepoint website allowed for successful execution.