Return the element with the specified ID:
The getElementById() method returns the element that has the ID attribute with the specified value.
Read more about the Element Node object in our Element Node object reference.
This method is one of the most common methods in the HTML DOM, and is used almost every time you want to manipulate, or get info from, an element on your document.
Returns null if no elements with the specified ID exists.
Returns undefined if more that one element with the specified ID exists.
![]()
The getElementById() method is supported in all major browsers.
| Parameter | Type | Description |
|---|---|---|
| elementID | String | Required. The ID attribute's value of the element you want to get |
| Type | Description |
|---|---|
| Element object | The element with the specified ID |
| DOM Version | Core Level 2 |
|---|
Your message has been sent to W3Schools.