When creating id attributes for html elements what rules are there for the value?
|
|
As pointed out in other responses, the answer is technically:
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". |
||||
|
|
|
From the HTML 4 specification:
A common mistake is to use an ID that starts with a digit. |
||
|
|
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. |
||
|
|
|
|
In practice many sites use The HTML 5 draft specification loosens up the rules for the |
||
|
|
|
|
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
|
||
|
|
|
|
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. |
||
|
|
|
|
Must start with a-z |
||
|
|
|
|
Names can also contain "$" I believe |
||
|
|
|
|
They must also be unique for the page. |
||
|
|
|
|
Strictly it should match
But jquery seams to have problems with colons so it might be better to avoid that. |
||
|
|
|
|
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! |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
Had problems with underscores*, that is. The underscores seem to mark things as italic around here; my bad for not knowing markdown. :) |
||
|
|
