I get below error when trying to load this D3 in Internet Explorer 11 on Windows 7:
SCRIPT 5 : Access is denied
d3.min.js, Line: 1, Column: 10922
Researching the error, msdn says, it is due to Same-Origin Policy. But I saved all files - d3.min.js , flare.json and html file - locally in the same directory.
I also lowered Security setting on all zones, and added <meta http-equiv="X-UA-Compatible" content="IE=edge" /> , but no luck.
It works fine on Firefox & Chrome though.
It also works fine on IE if I include the content of json within the html as a javascript variable like var data = {"name":"flare",...} , but not when reading from an external .json file.
I guess this is impossible to do in IE.. ?
EDIT-SOLUTION: The problem was because I was trying to do this on my local computer. Once I uploaded the files to a Sharepoint website, it opened fine.