I keep hearing about html5 and seen on other questions/answers on this site that the current browsers do not yet support it...what I know:

  • it has potential to replace flash and silverlight
  • Google seems to be building new systems to take advantage of it (is that correct?)

What I don't know (which is a lot, but will limit it to some points of interest):

  • how will existing sites work within a html5 browser (backward compatible?)
  • is Flash/Silerlight really gone? will they be supported? (I'm sure adobe will not be happy)
  • is javascript impacted? improved? will jquery still work?
  • is there a good site listing (high level down) what the html code impacts are?
link|improve this question

58% accept rate
feedback

7 Answers

W3C has a working draft of the differences between HTML 4 and 5.

link|improve this answer
feedback

Google seems to be building new systems to take advantage of it (is that correct?)

Correct

Google Bets Big on HTML 5: News from Google I/O

HTML5 and The Future of the Web

HTML 5 is a mess. Now what?

link|improve this answer
feedback

http://html5doctor.com/ is probably a good place to answer a lot of that.

Stop thinking about it as a new version. Think of it as just another step, building on what we have and introducing some new elements that let us do new stuff.

Read up on the new elements and what browser support they have, then start using them where they help you (remembering to use the right doctype).

link|improve this answer
feedback

Here's a great article/comic strip about html 5 and how it differs from xhtml. I found it very useful in explaining the differences.

[http://www.smashingmagazine.com/2009/07/29/misunderstanding-markup-xhtml-2-comic-strip/][1]

link|improve this answer
That comic does a very good job at showing how wrong people understood XHTML in general. XHTML isn't about syntax only. And WHATWG does not allow us to use XHTML syntax when the sent Content-Type is not application/xhtml+xml. Oh well... – Ionuț G. Stan Aug 4 '09 at 13:10
@Ionuț: “XHTML isn't about syntax only.” — What else is it about? Did you mean XHTML2? – Paul D. Waite Jul 9 '11 at 10:39
@Paul D. Waite XHTML, because it should have been be an XML, not a malformed HTML, should have been also about XML namespaces and draconian error handling. – Ionuț G. Stan Jul 9 '11 at 11:36
@Ionuț: ah, okay. – Paul D. Waite Jul 9 '11 at 11:45
feedback

To answer just one question:

"is Flash/Silerlight really gone? will they be supported? (I'm sure adobe will not be happy)"

Yes, they will be supported, since HTML5 still has the OBJECT tag and this is what is used to embed external content (such as Flash etc).

link|improve this answer
feedback

For starters, it can work in older browsers. I've got it working in most major browsers in a reasonable span of versions: http://www.stevefenton.co.uk/

Flash and Silverlight will still be a part of the internet, but what they want to do is make it possible to have video content (for example) that doesn't need a plug-in to play it back. The idea is to pick a format that all browsers will support (this is more difficult than it sounds as the codecs might require licensing, or if they don't - might not be that good).

ALL browsers that support HTML5 will also display HTML4.01 and XHTML websites.

JavaScript and jQuery WILL continue to work.

Check out the http://www.w3.org/ website for the full specifications (in draft).

link|improve this answer
feedback
  • how will existing sites work within a html5 browser (backward compatible?)

Just fine. HTML5 is, as far as possible, backwards-compatible. Of course, some new HTML5 tags/APIs don’t work in older browsers (although many, like the new form field types, degrade gracefully), but much of HTML5 merely specifies, and builds on, how existing browsers parse HTML.

  • is Flash/Silverlight really gone? will they be supported? (I'm sure adobe will not be happy)

Adobe and Microsoft haven’t cancelled work on Flash and Silverlight, and no browser-makers (not even Apple) have said they’re removing their plugin APIs. So no, Flash and Silverlight are not gone.

  • is javascript impacted? improved?

The HTML5 spec both defines the DOM interface for HTML (which previous HTML specs didn’t do), and adds new browser JavaScript APIs (e.g. for data- attributes and geolocation). JavaScript the language isn’t affected though, as it’s specified in the ECMAScript Language Specification

  • will jquery still work?

Yes.

  • is there a good site listing (high level down) what the html code impacts are?

You don’t have to change any HTML code for it to continue to work.

As mentioned in other answers, the W3C has a decent document of the changes from HTML4:

And Dive into HTML5 is a great intro if you’re familiar with HTML 4, especially it’s introductory “5 things you should know” chapter:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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