103
HTML Id Attribute
The id attribute is used to specify the unique ID for an element of the HTML document. It allocates the unique identifier which is used by the CSS and the JavaScript for performing certain tasks.
Note: In the Cascading Style sheet (CSS), we can easily select an element with the specific id by using the # symbol followed by id.
Note: JavaScript can access an element with the given ID by using the getElementById() method.
Syntax
Example 1: The following example describes how to use the id attribute in CSS document:
Output:
Example 2: The following example describes how to use the ID attribute in JavaScript.
Output:
Browser Support
Element | ![]() | ![]() | ![]() | ![]() | ![]() |
<id> | Yes | Yes | Yes | Yes | Yes |
Next TopicHTML List Box