vote up 7 vote down star
1

From searching SO, this question was already asked, almost a year ago now.

So now with the new FF, Opera, IE, is it finally time to start developing sites with HTML5 or is it still a little premature and will cause compatibility issues?

Is using HTML5 just going to require us to use more and more JS on websites to 'trick' older browsers into working properly?

flag

1  
I don't see why you'd need JS trickery. All of the HTML5 features I've seen so far have fallback features for browsers which don't support the new elements. – Turnor Jul 27 at 15:31
As with any new standard there will always be features that are not supported by older browsers. So if IE6 doesn't know what to do when it sees < nav > something is going to have to tell it what to do. – razass Jul 27 at 16:24
Google is using it, so sure!! – Josh Stodola Jul 27 at 17:14
@Turnor: there's at least one thing I know of that requires some JS trickery: IE won't style the new elements like section unless you add a |document.createElement("section");|. – ms2ger Jul 27 at 19:36

7 Answers

vote up 3 vote down check

If you add nice features to your site, it is possible it will be talked about and reach the news sites for some free publicity.

Aside from that, It would make a good beta site and give you a head start for when it becomes the new technology. However, until HTML 5 enabled browsers are widespread (at least 20% of the market, possibly 50%) it makes little sense to alienate nearly the whole internet.

link|flag
Just checking my recent reputation and I got -2 from this, which I answered ages ago? Do people normally rate down old posts? – Wil Aug 17 at 16:12
vote up 3 vote down

It's a great idea if used in a "Progressive Enhancement" way. ie. Code your website to work in "standard" HTML 4.01 mode, and then add some fancy HTML 5 bits to give it some extra flourishes in browsers that support HTML 5

link|flag
vote up 2 vote down

If there is a feature in HTML 5 would be useful for the project you are working on, then it is worth considering using it.

You will need to weigh the benefits against the possibility of the specification changing, the less mature testing tools available for HTML5 validation and the probability that you will need to use JavaScript to fake support in older browsers (of course, the HTML 5 spec gives a roadmap that someone else may have already followed in writing such JS).

If HTML 4.01 gives you everything you need — stick with that.

link|flag
vote up 2 vote down

Assess your target audience. Are they likely to be early-adopters? Is it critical that all visitors to your site are catered for? Or will a few not mind being met with an inconvenient, yet polite "please upgrade your browser" message?

For business sites I'd say no. Not yet, anyway. You probably can't afford to lose users of older browsers.

For a personal website or project, why not? It'll be great experience learning the latest HTML5 features, and you'll be ahead of the curve when it does become mainstream. Besides, more people writing sites conforming to HTML5 means more pressure on users of older browsers to upgrade, benefitting all of us in the long run.

link|flag
vote up 1 vote down

I would leave it for now since HTML 5 browser support comes out fully. There really is no reason to put it in a operational site since many people will not be able to view it properly. I really can't wait till it becomes standard. It will make life even easier for web developers.

link|flag
vote up 1 vote down

Bruce Lawson of Opera gave an interesting presentation on this at OSCON, see his slides; the verbal conclusion was that it's OK, though there was some debate. Of course that's from somebody working for a browser maker so they're going to be less worried about older browsers (since everybody upgrading is to their advantage;-). The more you need to worry about older browsers, the worse your life is in general of course, but html 5 wouldn't help you there, sigh!-(

link|flag
vote up 1 vote down

I have begun developing pages with the new HTML5 DOCTYPE:

<! DOCTYPE html>

This new DOCTYPE essentially puts the browser into a sorta "standards-based mode." Obviously this is all pretty new to most browsers but creating pages under this DOCTYPE will allow sites to last longer than ever. This also degrades gracefully within every browser I have tested in and no noticeable HTML or CSS downsides.

W3C has began using an experimental validator for HTML5 which can be used the exact same way as all of their other validation engines. An intersting side note: According to the W3C validator, you do not need to close the BODY or HTML tag at the end of the page; allowing for very minimal load time decreases.

As HTML5 continues to make its way to the forefront, I plan to begin implementing more advancements that just the DOCTYPE. For now that seems to be all that is new and widely supported.

Hope this helps. -B

link|flag
""you do not need to close the or tag at the end of the page"" - Sorry which tag are you referring too? – razass Jul 27 at 16:14
Sorry the site removed the tags automatically. Now Editted. -B – Brad Jul 27 at 16:16
1  
Mode switching using Doctypes has been around since IE6. The HTML5 "Doctype" adds nothing new to this. If anything, it takes things away (i.e. the DTD that could be validated against using a generic SGML or XML validator). Likewise, the optional end tags for the HTML and BODY elements have been a feature of the language forever, HTML 4.x certainly has them. I've never bothered to read the DTDs for earlier versions to see. – David Dorward Jul 28 at 13:51

Your Answer

Get an OpenID
or

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