Some DOM object methods
Here are some common ways you'll learn in this tutorial:
| method |
description |
| 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 () |
Delete child nodes. |
| replacechild () |
replace child nodes. |
| insertbefore () |
insert a new child node in front of the specified child node. |
| createattribute () |
Create an attribute node. |
| createelement () |
Create an element node. |
| createtextnode () |
Create a text node. |
| getattribute () |
Returns the specified property value. |
| SetAttribute () |
Sets or modifies the specified property to the specified value. |
dom– (W3school) 1.DOM method