JS: What is Node, Node Type, Element
When writing JavaScript code to manipulate web pages, it's critical to understand the concept of node, element, whitespace node, text node.
What is a Node
DOM is a tree structure. Each vertex, is called a node.
Example of nodes:
- An HTML/XML element is a node. e.g.
<p>something</p>
. - An HTML/XML element's text content is a node. e.g. the “something” in
<p>something</p>
. - The first line in a HTML/XML file the “DTD” such as
<!doctype html>
, is a node. - Comment
<!-- abc -->
is a node. - Certain whitespace between tags is a node. 〔see DOM: Whitespace Nodes〕
What is Node Type
Each HTML/XML node has a Node Type. Node type is important because typically you want to ignore a comment node, or Whitespace Nodes, or text nodes.
For example, if you want to get the name of a element, but if the node is a Whitespace Nodes or text node or comment, you'll get error or null.
So, you need to first check the type of the node.
What is an Element
- An element is a special type of node, that is represented by a tag in HTML/XML source code.
- Elements are Node Type value 1.
When working with HTML/XML, most of the time, you want to work with elements, not nodes such as Whitespace Nodes or comment nodes.
Many DOM interfaces have a version that return only elements and ignore
whitespace nodes.
For example, property
firstChild
return the first child node,
but
firstElementChild
ignores whitespace nodes, return the first element node.
When working with XML, it's more common to work with the more general concept of nodes.
Difference Between Node vs Element
A node is the fundamental object in Document Object Model. They include HTML element, XML element, and also Comment, text nodes (such as text inside a bold tag), Whitespace Nodes.
A element is a particular type of node. In general, they are object represented by HTML tags or XML tags (such as SVG).
How to get a node
Basic DOM Element Methods
- JS: What is Node, Node Type, Element
- JS: Get Element by ID, Name, Class etc
- JS: Get Element Parent, Child, Sibling
- DOM: NodeList vs HTMLCollection
- JS: Iterate HTMLCollection
- JS: Element Attribute Methods
- JS: List, Add, Remove Class Attribute
- JS: Create Element, Clone
- JS: Insert, Remove, Replace Element
- JS: Change Element's Content
- JS: Add, Remove Event Handler