vote up 8 vote down star
6

Am I allowed to add whatever attributes I want to HTML tags such that I can retrieve their value later on using javascript? For example:

<a href="something.html" hastooltip="yes" tipcolour="yellow">...</a>

If that's not going to work, how would you store arbitrary pieces of information like this?

Edit: Since it appears that making up HTML attributes isn't technically valid, I've rephrased the second part of this question into its own question here: http://stackoverflow.com/questions/432174/

flag

68% accept rate

4 Answers

vote up 4 vote down check

In HTML5, yes. You just have to prefix them with data-. See the spec.

Of course, this implies you should be using the HTML5 doctype (<!doctype html>), even though browsers don't care.

link|flag
HTML5 is still in draft, this is not a safe recommendation – annakata Jan 13 at 21:33
Umm, this specification is meant to be used before going final. wiki.whatwg.org/wiki/… – Niko Jan 14 at 11:05
This won't break anything anymore than arbitarily choosing attributes, and it's valid for a future spec, smiles all round! – Rich Bradshaw Mar 24 at 21:31
vote up 18 vote down

Well, you can always create your own DTD to get new valid attributes for your tags. Browser won't hiccup, you should test your JavaScript if you can access these custom attributes. Or you can use the existing facilities provided by HTML and CSS. You can use multiple classes like

<a href="..." class="class-one class-two has-tooltip">

For the colour selection I strongly discourage you to use hard-coded colour names in your HTML, you have CSS for declaring styles. Use the class attribute as a hook for the CSS declaration, and choose semantic class names, for example

HTML:

<a href="..." class="has-tooltip common-tooltip">
<a href="..." class="has-tooltip long-tooltip">

CSS:

a.has-tooltip {
   colour: red;
}
a.common-tooltip {
   background: #ddd;
}
a.long-tooltip {
   background: #ebf;
}

And in your JavaScript code you can generate elements with classes like "long-tooltip" and "common-tooltip" instead of "yellow-tooltip", so you won't contradict yourself in case of redesigning the page to have green tooltips.

link|flag
the example i gave really was just an example: the data i'd be storing could be anything really, not just colours and whatnot. – nickf Jan 9 at 7:15
okay, I was just answering defensively :-) – bandi Jan 9 at 19:05
vote up 3 vote down

You can. The page will not pass verification, however most browsers will accept it.

It is almost certainly the wrong way of doing it. Try using class="hasTooltip_yes tipcolour_yellow"

link|flag
you don't think that bastardising the class attribute is even more wrong though? – nickf Jan 9 at 6:53
If you bastardise the class attribute it will still validate so in terms of adhering to standards your still better off. – Kevin Loney Jan 9 at 6:56
3  
Just because you are adhering to standards, doesn't mean you have the best possible solution. – Kibbee Jan 11 at 2:23
vote up 1 vote down

Depending on the information you want to store you should look at some of the other attributes available. These don't look like good candidates, but 'rel' has been used for lots of interesting things.

link|flag
according to the spec, the rel attribute can only contain LinkTypes eg: start next prev chapter – nickf Jan 9 at 6:59
But, the spec doesn't define an authoritative list of link types, and in fact leaves room for expansion – Gareth Jan 9 at 7:37

Your Answer

Get an OpenID
or

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