GetElementById
GetElementById is a method of the Document
object in the Document Object Model. It is commonly used in JavaScript programming to refer to an HTML element for processing. Specifically, it returns a reference to an object that represents an element on the page, in the case of an HTML document, or a node, in the case of an XML document. The element can then be examined or manipulated through this object.
Read more about Getelementbyid.