When creating the id attributes for HTML elements, what rules are there for the value?
| |||||
feedback
|
|
As pointed out in other responses, the answer is technically:
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 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 | |||||||||||||||||||||
feedback
|
|
From the HTML 4 specification:
A common mistake is to use an ID that starts with a digit. | |||||||||||||
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:
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. | |||||||||||||
feedback
|
|
In practice many sites use The HTML 5 draft specification loosens up the rules for the | |||
|
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
| |||||
feedback
|
|
Strictly it should match
But jquery seems to have problems with colons so it might be better to avoid them. | |||||
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! | |||||
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.
| |||
|
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. | |||
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. | ||||
|
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 | |||
|
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_:.]* | |||
|
feedback
|