Dom Nodes Get
# XML DOM Getting Node Values
* * *
The nodeValue property is used to get the text value of a node.
The getAttribute() method returns the value of an attribute.
* * *
## Getting Element Values
In the DOM, every component is a node. Element nodes don't have text values.
The text of an element node is stored in a child node. This node is called a text node.
Getting element text
YouTip