The HTML DOM method can access the HTML DOM through JavaScript (and other programming languages).
getElementById () returns the element with the specified ID.
getElementsByTagName () Returns a list of nodes (a collection/node array) that contains all the elements with the specified label name.
Getelementsbyclassname () Returns a list of nodes that contain all the elements with the specified class name.
AppendChild () Adds a new child node to the specified node.
RemoveChild () Deletes a child node.
replacechild () Replace the child nodes.
CreateAttribute () creates an attribute node.
CreateElement () creates an element node.
createTextNode () Creates a text node.
insertbefore () Inserts a new child node in front of the specified child node.
getattribute () Returns the specified property value.
SetAttribute () Sets or modifies the specified property to the specified value.
HTML DOM Methods