I'm trying to run a D3 Visualisation. I'm hosting my HTML/CSS/JS on an internal company sharepoint site that has IE enterprise running which is forcing me from IE11 into an IE8 environment per my console:
HTML1122: Internet Explorer is running in Enterprise Mode emulating IE8.
My understanding is that the d3 SVG graphics are not supported at all in IE8. I've tried over-riding with this meta tag at the very top of my <head></head>
section to no avail:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
I doubt I can have the browser settings changed. Is there any other way to override from my HTML?
This question seems to address the same issue. But offers no solution without being a network admin. I'm not going to be able to have my site removed from the Enterprise Mode list. So hoping to explore potential work arounds a little further..