What characters can I use in an identifier for an HTML element?
For example:
<SPAN id="section[5]" ...>
(Or rather, should I stick to certain characters to make sure the id works across all major browsers/JavaScript engine).
|
What characters can I use in an identifier for an HTML element? For example:
(Or rather, should I stick to certain characters to make sure the |
|||||
|
As pointed out in a previous post, depending on your implementation you may have troubles with colons and periods along with others: What is a valid value for id attributes in html |
|||||||
|
|
From http://www.w3.org/TR/html4/types.html:
|
|||
|
|
As other answers have pointed out, HTML 4 specifes this as
However, in HTML5, all restrictions have been lifted, except that the ID must be unique within the document, contain at least one character and contain no spaces. See http://www.w3.org/TR/html5/elements.html#the-id-attribute |
|||
|
|
|
From the HTML4 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 ("."). |
|||
|