getElementById IN JAVSCRIPT | JAVASCRIPT TUTORIALS IN HINDI

Опубликовано: 13 Октябрь 2024
на канале: CODERS NEVER QUIT
12,998
145

The getElementById() method returns the element that has the ID attribute with the specified value.

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.

An ID should be unique within a page. However, if more than one element with the specified ID exists, the getElementById() method returns the first element in the source code.