Home » HTML Id Attribute

HTML Id Attribute

by Online Tutorials Library

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:

Test it Now

Output:

HTML Id Attribute

Example 2: The following example describes how to use the ID attribute in JavaScript.

Test it Now

Output:

HTML Id Attribute

Browser Support

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
<id> Yes Yes Yes Yes Yes

Next TopicHTML List Box

You may also like