up vote 148 down vote favorite
26
share [g+] share [fb]

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

link|improve this question

60% accept rate
1  
This differs between HTML5 and previous versions of the spec. I explained it here: mathiasbynens.be/notes/html5-id-class – Mathias Bynens Oct 24 '11 at 8:41
feedback

14 Answers

up vote 163 down vote accepted

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 (".").

The working draft for HTML 5 is even more permissive, saying only that an id must contain at least one character and may not contain any space characters.

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 treat id attribute values as case-sensitive, while other browsers do not. 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|improve this answer
17  
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 '09 at 10:35
1  
Also note that if you try to write a CSS rule to target an element by ID, and the ID beings with a number, it won't work. Bummer! – Zack The Human Jan 20 '10 at 0:53
7  
As for '.' or ':' in an ID using jQuery, see the jQuery FAQ. It contains a small function that does the necessary escaping. – Wolfram May 6 '10 at 10:18
3  
Note that HTML5 allows much more then HTML4, see for example 456bereastreet.com/archive/201011/… and w3.org/TR/html5/elements.html#the-id-attribute – Mr Shark Nov 30 '10 at 8:36
1  
The id attribute is [w3.org/TR/html4/struct/global.html#adef-id](case sensitive in HTML4) and has to begin with a letter (limited to A to Z). Also note that your example should not make your element's text color red since your CSS refers to an element with class FirstName not to your id. – Augustus Kling Sep 30 '11 at 7:55
show 3 more comments
feedback

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|improve this answer
1  
This was useful; thanks! – Pandincus Sep 17 '08 at 1:44
3  
+1 for linking to the spec. – cletus Feb 27 '09 at 21:50
4  
Note that HTML5 allows much more then HTML4 see for example 456bereastreet.com/archive/201011/… and w3.org/TR/html5/elements.html#the-id-attribute – Mr Shark Nov 30 '10 at 8:33
feedback

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|improve this answer
4  
You can use colons and periods - but you'll need to escape them using double backslashes, eg: $('#my\\.cool\\:thing') or escaping a variable: $('#'+id.replace(/\./,’\\.’).replace(/\:/,’\\:’)) groups.google.com/group/jquery-en/browse_thread/thread/… – joeformd Dec 3 '09 at 10:41
Why not numerals; why just A-Z? Numbers are very useful IDs when referring to elements that are related to data that's keyed with a number, as long as you don't start with the number. – cori May 2 '11 at 16:35
1  
Just FYI, dashes are technically hyphens. Minus sign isn't in ASCII character set. en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes – Anton Strogonoff Jul 8 '11 at 18:31
@jowformd: interesting idea using replace in the selector, instead of using the function twice, why not just improve the regex id.replace(/([\.:])/g,"\\$1") – vol7ron Oct 18 '11 at 16:57
feedback

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|improve this answer
feedback

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|improve this answer
2  
+1 for 'O'Hara' ;) – aSeptik Jun 10 '10 at 20:19
feedback

Strictly it should match

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

But jquery seems to have problems with colons so it might be better to avoid them.

link|improve this answer
shouldn't that be [A-Za-z][-A-Za-z0-9_:.]* instead, since everything after the first letter is optional ("any number" includes zero, "may" implies "does not have to"). – foo Jan 7 '11 at 5:09
Yepp, updated the pattern. – Mr Shark Jan 12 '11 at 9:26
feedback

They must also be unique for the page.

link|improve this answer
feedback

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|improve this answer
1  
So why not to delete this answer... there are so many to be read!.. O_o" – bluish Mar 15 '11 at 9:18
feedback

Hyphens, underscores, periods, colons, numbers and letters are all valid for use with CSS and JQuery. The following should work but it must be unique throughout the page and also must start with a letter [A-Za-z].

Working with colons and periods needs a bit more work but you can do it as the following example shows.

<html>
<head>
<title>Cake</title>
<style type="text/css">
    #i\.Really\.Like\.Cake {
        color: green;
    }
    #i\:Really\:Like\:Cake {
        color: blue;
    }
</style>
</head>
<body>
    <div id="i.Really.Like.Cake">Cake</div>
    <div id="testResultPeriod"></div>

    <div id="i:Really:Like:Cake">Cake</div>
    <div id="testResultColon"></div>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript">
        $(function() {
            var testPeriod = $("#i\\.Really\\.Like\\.Cake");
            $("#testResultPeriod").html("found " + testPeriod.length + " result.");

            var testColon = $("#i\\:Really\\:Like\\:Cake");
            $("#testResultColon").html("found " + testColon.length + " result.");
        });
    </script>
</body>
</html>
link|improve this answer
feedback

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|improve this answer
They aren’t invalid if you escape them correctly. See mothereffingcssescapes.com/#foo%23bar.baz%3Aqux – Mathias Bynens Oct 24 '11 at 8:43
feedback

Also, never forget that an 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|improve this answer
feedback

Names can also contain "$" I believe

link|improve this answer
feedback

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|improve this answer
feedback

the following are the rules for writing id's in html elements 1.Spaces are not allowed 2.Cannot start with numbers[0-9] [A-Za-z][-A-Za-z0-9_:.]*

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.