I'm now creating all new websites in HTML5. As always, IE is way behind in technology. This article explains how to get your html5 tags working just like they would in Chrome or Firefox.

You can get HTML5 tags working in IE8 by including this JavaScript in the head.

<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
</script>

So far this has covered all my needs, if you have more in depth explication I'd love to hear it. Please leave a comment.

Reference

Comments

Show/Hide Comment form