vote up 16 vote down star
1

When creating id attributes for html elements what rules are there for the value?

flag

75% accept rate

14 Answers

vote up 21 vote down check

As pointed out in other responses, the answer is technically:

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

However, as a practical matter, you will be somewhat more limited if you want your documents to work with a variety of browsers, CSS editors, and JavaScript frameworks.

As noted in other responses, jQuery has problems with ids that contain periods and colons.

A more subtle problem is that some browsers have been known to mistakenly treat id attribute values as case-sensitive. That means that if you type id="firstName" in your HTML (lower-case 'f') and .FirstName { color: red } in your CSS (upper-case 'F'), a buggy browsers will not set the element's color to red. Because both definitions use valid characters for the id, you will receive no error from a validation tool.

You can avoid these problems by strictly sticking to a naming convention. For example, if you limit yourself entirely to lower-case characters and always separate words with either hyphens or underscores (but not both, pick one and never use the other), then you have an easy-to-remember pattern. You will never wonder "was it 'firstName' or 'FirstName'?" because you will always know that you should type "first_name".

link|flag
1  
Note that class and id attributes are case-sensitive in XHTML, all other attributes are not. Eric Meyer mentioned this in a CSS workshop I attended. – John Topley Apr 22 at 10:35
vote up 17 vote down

From the HTML 4 specification:

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

A common mistake is to use an ID that starts with a digit.

link|flag
1  
This was useful; thanks! – Pandincus Sep 17 '08 at 1:44
+1 for linking to the spec. – cletus Feb 27 at 21:50
vote up 3 vote down

You can technically use colons and periods in id/name attributes, but I would strongly suggest avoiding both.

In CSS (and several JavaScript libraries like jQuery), both the period and the colon have special meaning and you will run into problems if you're not careful. Periods are class selectors and colons are pseudo-selectors (eg., ":hover" for an element when the mouse is over it).

If you give an element the id "my.cool:thing", your CSS selector will look like this:

#my.cool:thing { ... /* some rules */ ... }

Which is really saying, "the element with an id of 'my', a class of 'cool' and the 'thing' pseudo-selector" in CSS-speak.

Stick to A-Z of any case, underscores and minuses (they're not technically hyphens). And as said above, make sure your ids are unique.

That should be your first concern.

link|flag
vote up 2 vote down

In practice many sites use id attributes starting with numbers, even though this is technically not valid HTML.

The HTML 5 draft specification loosens up the rules for the id and name attributes: they are now just opaque strings which cannot contain spaces.

link|flag
vote up 1 vote down

jQuery does handle any valid ID name. You just need to escape metacharacters (i.e., dots, semicolons, square brackets...). It's like saying that JavaScript has a problem with quotes only because you can't write

var name = 'O'Hara';

Selectors in jQuery API (see bottom note)

link|flag
vote up 1 vote down

It appears that although colons (:) and periods (.) are valid in the HTML spec, they are invalid as id selectors in CSS so probably best avoided if you intend to use them for that purpose.

link|flag
vote up 0 vote down

Must start with a-z

link|flag
vote up 0 vote down

Names can also contain "$" I believe

link|flag
vote up 0 vote down

They must also be unique for the page.

link|flag
vote up 0 vote down

Strictly it should match

[A-Za-z][-A-Za-z0-9_:.]+

But jquery seams to have problems with colons so it might be better to avoid that.

link|flag
vote up 0 vote down

From the HTML 4 spec...

ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

EDIT: d'oh! Beaten to the button, again!

link|flag
vote up 0 vote down

Also, never forget that and ID is unique. Once used, the ID value may not appear again anywhere in the document.

You may have many ID's, but all must have a unique value.

On the other hand, there is the class-element. Just like ID, it can appear many times, but the value may be used over and over again.

link|flag
vote up 0 vote down

Older versions of Netscape had problems with "" in names/elements, so I've stuck to A-Z, a-z, 0-9 and "-" in my IDs out of habit. I'd stretch to ""s, but I haven't had any real reason to use them. Shrugs

link|flag
vote up 0 vote down

Had problems with underscores*, that is. The underscores seem to mark things as italic around here; my bad for not knowing markdown. :)

link|flag

Your Answer

Get an OpenID
or

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