I know that Internet Explorer does not support HTML5 or CSS3. I know there are javascript hacks to at least make Internet Explorer play nice with the new tags like:
<nav>, <header>, <footer>, <article>, <aside>, and <section>
<script>
document.createElement('header');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('nav');
document.createElement('footer');
</script>
Using http://html5shim.googlecode.com/svn/trunk/html5.js
and I know for IE 8, one can use some CSS to make rounded corners.
I'd like to use the D3 Javascript Library for visualizing connections ( see this demo in particular: http://mbostock.github.io/d3/talk/20111116/pack-hierarchy.html)
So my question is: Would it be possible to make the demo work using IE8 with some of the hacks known? Are there any hacks out there that would make this easy and feasible?
Thanks in advance for your answers.