I understand that Internet Explorer may not fully support HTML5 and CSS3. I am aware of certain javascript hacks that can help make it compatible with newer tags such as:
<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>
Utilizing
I also know that for IE 8, it is possible to use certain CSS techniques to create rounded corners.
I am interested in incorporating the D3 Javascript Library for visualizing connections ( take a look at this specific demo: )
Therefore, my inquiry is: Is it feasible to make the aforementioned demo function properly on IE8 by implementing these known hacks? Are there any specific hacks available that would simplify this process?
Thank you in advance for your assistance.