Is there any HTML5 support in IE8? Is it on the IE8 roadmap?

link|improve this question

71% accept rate
HTML 5 is still a draft. That means anything can happen to it. Its development could even be halted like it happened with XHTML 2. – Gumbo Feb 2 '10 at 21:41
6  
Hopefully there will not be any IE after IE8 and no will get offended by such questions. – Akshar Prabhu Desai Sep 3 '10 at 22:35
feedback

closed as too localized by Will Jun 28 '11 at 14:09

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

12 Answers

up vote 47 down vote accepted

IE8 beta 2 supports two APIs from HTML5: cross-document messaging and non-SQL storage.

IE8 beta 2 doesn’t implement the HTML5 parsing algorithm or the new elements (no <canvas> or <video> support).

There are also bug fixes that align IE8 better with HTML5.

link|improve this answer
19  
so the answer is that for all fits and purposes, IE8 does not support html5 - just some randome bits and pieces of it. Which makes using HTML5 (as in HTML markup, not scripting API's) moot. – Roland Tepp Sep 7 '09 at 14:07
feedback

You can use this IE HTML5 shim script to gain a basic level of support for the new semantic elements in HTML5 such as <article>.

link|improve this answer
Nice tip :) thanks – Roland Tepp Nov 19 '09 at 10:31
1  
Should point out that this doesn't help with certain JavaScript usages. For example, the following will not work: var div = document.createElement('div'); div.innerHTML = '<section>test</section>'; We end up with div.childNodes.length = 2. I ran into the problem using jQuery and have been trying to figure out what's going on in IE. – Nick Spacek Feb 23 '10 at 19:00
Nitpick: the script is called "shiv" (as in hand-made prison knife), not "shim". – Mikko Rantalainen Nov 3 '11 at 10:01
Well, to be totally pedantic, the author uses both "shim" and "shiv". The project is called "html5shim". Quoting from code.google.com/p/html5shim: Common question: what's the difference between the html5shim and the html5shiv? Answer: nothing, one has an m and one has a v - that's it. – John Nov 4 '11 at 0:58
feedback

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

<script type="text/javascript">
 document.createElement('header');
 document.createElement('hgroup');
 document.createElement('nav');
 document.createElement('menu');
 document.createElement('section');
 document.createElement('article');
 document.createElement('aside');
 document.createElement('footer');
</script>
link|improve this answer
1  
Is there a reference article where you found this? Thanks +1 – brun May 13 '11 at 19:36
Sorry, included it for my form validation but did not work. Is there any link where we could find out more about how to get it working? – Helen Neely Oct 1 '11 at 12:13
Thanks, that worked for my section element, I removed all the rest. Where from do you know this? – Mihail Stoynov Oct 10 '11 at 11:49
+1 for not creating unnecessary tags – jkucharovic Mar 15 at 9:20
feedback

Modernizr is also a great option for giving IE HTML5 rendering capabilities.

link|improve this answer
1  
From the Modernizer homepage - Modernizr does not add missing functionality to browsers; instead, it detects native availability of features and offers you a way to maintain a fine level of control over your site regardless of a browser’s capabilities. – Ira Miller Aug 16 '10 at 19:35
5  
Can't believe this got so many down votes. +1 to reverse one of them. Modernizr may not add any functionality to the browser, but (along with lots of other useful stuff) it does include the HTML5 Shim functionality, which has been mentioned in other answers here, and has been given good scores. – Spudley May 18 '11 at 9:48
Modernizer combined with polyfill (modernizr.com/docs/#polyfills) seems to add compatibility support for HTML5 features. JavaScript must be enabled, though. – Mikko Rantalainen Nov 3 '11 at 11:00
feedback

Also are supported HTML5 hashchange event and ononline, offline event

link|improve this answer
feedback

Does it support

<!DOCTYPE html>

Yes it does.

Perhaps a better question is what modern web features IE8 supports. Some of the best places to answer that are caniuse.com, html5test.com, and broswerscope.org.

HTML5 means a lot of different things to different people. These days, it means HTML, CSS, and JavaScript functionality. The term is becoming a bit "Web 2.0"-like.

link|improve this answer
feedback

IE8's HTML5 support is limited, but Internet Explorer 9 has just been released and has strong support for the new emerging HTML5 technologies.

link|improve this answer
feedback

HTML5 is still in draft spec (and will be for a loooong time). Why bother?

link|improve this answer
6  
+1 The question is almost 15 months old and you’re the first who mentioned that HTML 5 is still a draft. – Gumbo Feb 2 '10 at 21:43
1  
Good point. Why bother? It is not like helping the web helps Microsoft. Hence, Silverlight and a not-so great browser. – brun Feb 3 '10 at 0:48
@Gumbo - The (first) C language specification was not completed until 1989. Would you have waited until then to use it? It had taken over the industry by then. Why bother? I guess that depends if you want to get the most out of what today's platforms can offer. Otherwise, why not just use HTML 3.2 or even 2.0 forever? – Justin Feb 3 at 23:06
@Justin No. It’s also quite common that standards are just a record of what is actually already a de-facto standard in practice. – Gumbo Feb 4 at 7:41
feedback

According to http://msdn.microsoft.com/en-us/library/cc288472(VS.85).aspx#html, IE8 will have "strong" HTML 5 support. I haven't seen anything discussing exactly what "strong support" entails, but I can say that yes, some HTML5 stuff is going to make it into IE8.

link|improve this answer
5  
Well, IE8 is out and we don't see "strong HTML5 support" and Microsoft is not known for upgrading like other more modern browsers do so any "strong support" will have to wait for IE9, yet Microsoft has not said much of anything about HTML5 for IE9 either. – Rob Dec 13 '09 at 3:42
feedback

Check out the caniuse guide for all HTML 5 features across all browsers and versions, including future versions.

link|improve this answer
feedback

You can read more about IE8 and HTML 5 support here:

http://blogs.msdn.com/giorgio/archive/2009/11/29/ie8-and-html-5.aspx

link|improve this answer
feedback

Some of the other answers here are about adding HTML5 capabilities to IE8 and other browsers. These are called Polyfills and my favourite place for finding those is here.

link|improve this answer
feedback

protected by Community May 18 '11 at 10:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.