EN
JavaScript - check if node is text type
0 points
In this article, we would like to show you how to check if a node is a text type using JavaScript.
Quick solution:
xxxxxxxxxx
1
myNode.nodeType === Node.TEXT_NODE;
In this example, we check if the node is an element type by getting a handle to myDiv
element's first child (which is the text node) and comparing it to the Node.TEXT_NODE
returning boolean value.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<div id="my-div">Example text...</div>
5
<script>
6
7
var myDiv = document.querySelector('#my-div');
8
9
var myDivText = myDiv.firstChild;
10
console.log(myDivText.nodeType === Node.TEXT_NODE); // true
11
12
</script>
13
</body>
14
</html>