Does anyone know how the HTML5 data attributes (data-*) can be implemented in XHTML without rendering the markup as invalid?

Is there a custom namespacing hack that would allow this on existing HTML elements?

link|improve this question

49% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You could use XHTML5. Then your mark-up would be XML, and valid XHTML5.

I think you could also use XML namespacing to use them on XHTML1 — I’m not very familiar with XML, so I’m not sure.

I think that both of these methods technically require you to serve your pages as XML (instead of text/html), which Internet Explorer doesn’t support. But I suspect they’d work just fine in browsers even if you didn’t.

link|improve this answer
I've seen a suggestion for this that for XHTML 1.0/1.1 you could maybe extend the DTD with a custom namespace (e.g. mycorp:data-foo="bar") and that will validate if you reference that DTD in the !DOCTYPE element... but moving XHTML5 is probably a better move :-). – Iain Collins Feb 29 at 15:16
1  
@IainCollins: yeah, I don’t know much about custom DTDs, but I think on the open web they’re generally a bad idea — they’d put IE 6 into Quirks Mode,for example. – Paul D. Waite Feb 29 at 15:39
feedback

It can't be done. XHTML is a precursor of HTML5.

In the same way that CSS3 properties will never validate in a CSS2 validator, you cannot validate HTML5 according to XHTML.

link|improve this answer
1  
For XHTML 1.0 and 1.1, true. For XHTML5, not true. – Paul D. Waite Jul 20 '10 at 9:39
I was unaware that there was such a thing. Good to know :) – Stargazer712 Jul 20 '10 at 16:57
feedback

Your Answer

 
or
required, but never shown

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