I have a simple question about how Rails 3 works with XHTML doctypes. Since Rails 3 uses UJS for its ajax calls (and even normal calls such as delete calls) and does so by use of HTML5 data attributes, then, since XHTML doesn't support data attributes, will the markup be automatically invalid?
|
feedback
|
|
The Most likely, if you are serving your content to real-world browsers, they are parsing it as HTML, not XHTML. If you serve your content as Even if it is invalid XHTML 1.0, it is still well-formed, and web browsers are not validating user agents, so whether the content is valid or not doesn't really matter. The whole point of The upshot is: these attributes are valid in HTML5 and XHTML5. They aren't valid in XHTML 1.0, but that doesn't really matter, as these attributes will work in all major browsers, to provide private data to the scripts on your page. | |||
feedback
|