this question isn't related to jQuery itself but I found a plugin named Metadata found there and one of the example uses custom tag attribute: <li data="{some:'random', json: 'data'}">...</li>.

Q: Is that cross-browser? Will this fail when validating markup?

Thanks.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The browser won't care, since very, very few browsers actually validate the HTML. It will fail if you try to treat it as XHTML though, since it isn't valid XHTML.

link|improve this answer
Does that mean I have to remove my <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> or I can still use it but trying to validate my markup will be useless? – Cybrix Oct 20 '10 at 1:41
1  
I can't see it affecting SEO in any way. – Ignacio Vazquez-Abrams Oct 20 '10 at 1:43
2  
@Cybrix - You could use the rel and rev attributes to store data. They're valid, and it's a common approach used by many jQuery plugins. – mellowsoon Oct 20 '10 at 1:55
1  
What you could do though is use a separate namespace for your custom attributes. Providing your own DTD for them will not cause validation to fail. – Ignacio Vazquez-Abrams Oct 20 '10 at 1:57
1  
<html xmlns:somedata="http://example.com/somedata.dtd"> ... <li somedata:data="{some:'random', json: 'data'}"> – Ignacio Vazquez-Abrams Oct 20 '10 at 2:18
show 7 more comments
feedback

The browser wont care. Most (if not all browsers) just ignore illegal attributes. If you try to validate it, it WILL fail however. What you need to do is figure out if you're OK with this. If you are just keep the doctype. If not change the doctype. One thing to note is that even if you keep the doctype and the illegal attribute it wont impact your site in any way that it doesnt validate.

In fact your markup might still validate if the data attribute is being added after the page loads - which means that at the point the validation occurs the data attribute wont be there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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