I use some custom attributes in my html, for jquery stuff. I saw there are data-XYZ attributes in HTML5, but I need to be xhtml 1.0 strict. What other options do I have?
| |||||
feedback
|
|
You can use the jQuery MetaData plugin which allows you to write data in the class attribute in JSON format:
Then in your jQuery, to get at the data:
This should meet your requirements of being xhtml 1.0 strict, and also allows you to use a plug-and-play solution :) | |||||||||||
feedback
|
|
You have a couple of options that spring to mind. Assuming you want site-specific custom attributes for use with scripting, one way is to embed a script right with the element you want to add attributes to. For example:
Another way of adding extra data to your elements is to embed the data in the class attribute. So you could have
If you're using the data for scripting, then you can add the script below to extract this data. You can add this just before the close body tag.
This should result in the same The http://example.com/hasData class is just a flag to indicate which elements should be processed. You can use any string you like for this purpose. Both methods are XHTML 1.0 Strict compliant and will work when served either as | |||||
feedback
|
No. (Should you care? Probably not, but that's your call.) | |||
|
feedback
|
|
If you want proper proper XHTML, you need to use the HTML5 doctype (
This is perfectly valid XHTML strict (I use this on my website). The purpose for this is so that the W3C doesn't come along and create an attribute with the same name as one you have been using on your website and break it. To get the value in JavaScript, you need to use | |||
|
feedback
|
|
The way I look at it, I don't really care if it's valid per the XHTML spec if I am serving it as As long as you don't have critical errors such as missing end tags and such, you don't necessarily have to worry about what the validator tells you as long as you are aware why. The XHTML 1.0 spec was written years ago. Technology moves fast. You'll never be able to use new features if you restrict yourself to make your site "valid" at the time of the spec writing. Though my real suggestion would be to just switch to HTML 5 - the xhtml syntax AFAIK is compatible with HTML 5. There may be some minor inconsistencies but for the most part it should be a fairly straight-forward transition. | |||||||||||||
feedback
|