up vote 3 down vote favorite
1
share [g+] share [fb]

I am looking at the custom attributes feature of html 5 here at this link http://ejohn.org/blog/html-5-data-attributes/

This look like the perfect thing for when I am using jquery/javascript.

My question, Is HTML 5 supported by all the main browsers?

example

<li class="user" data-name="John Resig" data-city="Boston"
     data-lang="js" data-food="Bacon">
  <b>John says:</b> <span>Hello, how are you?</span>
</li>
link|improve this question

feedback

8 Answers

up vote 8 down vote accepted

Various portions of HTML5 are supported by the different browsers, for various definitions of 'supported'.

Several parts work right now, reliably. The data-* attributes you ask about in your question work just fine in every browser, even IE6; however, nobody yet supports the fun "dataset" method to access them. As long as you're fine with just grabbing them by the full attr name, you're golden. I use them to store state all the time in my webapps, as they're the officially blessed method for doing so.

Wikipedia has a good summary of the various support levels across browsers: http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML_5)

link|improve this answer
I'd imagine using attributes like that would fail XHTML validation though. – FlySwat Aug 30 '09 at 22:53
I think the XHTML schema is extensible. – ChrisW Aug 30 '09 at 23:14
5  
If you're using HTML5, you wouldn't be validating against XHTML anyway. – bigmattyh Aug 31 '09 at 0:49
@FlySwat No, they'll validate just fine as XHTML5. – Alohci Aug 31 '09 at 2:03
feedback

Parts of HTML 5 are supported by Safari, Firefox and Opera, but they are not necessarily incorporating the same parts.

It seems that Firefox is the most ahead, from my experience, but it will be years before the majority of browsers users use will support it.

So, until then we will need to continue trying to use it when we can, in browsers that support the new features, and having workarounds for users that haven't updated yet, or continue to use IE.

link|improve this answer
Don't know why the downvotes, but, wrt the data attributes, this should be included I would expect fairly soon, but the problem is that you will need to have a version of the javascript that uses these attributes and a version that doesn't, for years, and since John Resig is involved with FF I would expect them to move quickly to support it, closely followed by Opera. – James Black Aug 30 '09 at 22:52
feedback

No.

The Wikipedia page "Comparison of layout engines (HTML 5)" does a good job of listing which engines have implemented which parts of HTML5.

There is currently a lot of red boxes on those tables, and that is based on the latest development version, not the version most users will be using.

link|improve this answer
feedback

Full support of HTML 5 is a way off BUT...

Creating custom attributes is nothing new and is likely to work in all the main browsers - but test to be sure that it will work in your case.

We can use HTML 5 now, just not all of it. A lot of HTML 5 is about formalising the way that HTML is currently used and ensuring backwards compatibility - so if a feature works in browsers now, use it.

link|improve this answer
feedback

Almost no web technology is completely supported by any browser; no bugs, quirks or issues.

HTML5 is designed for backwards compatibility, and it will hardly break your site (take <input type=url> for instance - non-supporting browsers show an ordinary text box, Opera lets you select an URL from history/bookmarks). I'd go by the approach: develop, try in the browsers you need to support - if it works, awesome. If not, don't use it. Just like with other specs.

link|improve this answer
feedback

HTML5 isn't even close to being completely supported on any browser yet, and some browsers (notably the IE's) have no intention of supporting it at this time.

link|improve this answer
WTF is with the downvotes. – FlySwat Aug 30 '09 at 22:53
IE9 claims to.. blogs.zdnet.com/microsoft/?p=5572 – John Isaacks Mar 19 '10 at 18:13
feedback

no, not yet. wait at least until gecko and webkit support it.

ps: you could use html 5 with data attributes anyway, if you need it for javascript purposes. or choose some other unused attributes (title, abbr, ...others?)

link|improve this answer
feedback

As of August 25, HTML 5 is still a working draft. http://dev.w3.org/html5/spec/Overview.html

link|improve this answer
I didn't downvote you, but this doesn't answer the question. Several HTML 5 features are supported in many of the major browsers -- regardless of the fact that HTML 5 is still officially only a working draft. – bigmattyh Aug 30 '09 at 22:39
3  
Why would anyone create a website based on incomplete specifications? Unless it's for experimental purposes. – ZippyV Aug 30 '09 at 22:42
i think he was after getting custom attributes working and i offered a workaround instead of just copy pasting URL. more constructive approach, don't you think? – dusoft Aug 30 '09 at 22:42
Well reason #1 might be that the WHATWG has already said -- non-facetiously -- that they don't expect the final recommendation to be done until 2022 (blogs.techrepublic.com.com/programming-and-development/?p=718). Spec teams don't drive browser technology; they're only a part of the picture. – bigmattyh Aug 30 '09 at 22:46
1  
...sigh. Please stop repeating the 2022 date. That's a rough estimate of when HTML5 will be read Recommendation status. This means that there are at least two fully compliant mainstream browsers implementing every piece of it. For reference, HTML4 (you know, that language we've been using for well over a decade?) isn't a Recommendation under the current rules, and probably can't ever be. HTML5 will be entering Last Call next month or so, and parts of it are stable and usable right now. Support will continue to improve over time. Two years from now I except support will be fine. – Xanthir Aug 30 '09 at 22:54
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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