JavaScript node.normalize() Method
You are Here:
JavaScript node.normalize() Method
The node.normalize()
method joins adjacent text nodes into a single text node and removes empty text nodes.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Click Me</button>
<script>
var y = document.createElement("p");
function myFunction(){
y.appendChild(document.createTextNode("Part 1 "));
y.appendChild(document.createTextNode("Part 2 "));
document.body.appendChild(y);
console.log("Before Normalize");
console.log(y.childNodes.length);
y.normalize();
console.log("After Normalize");
console.log(y.childNodes.length);
}
</script>
</body>
</html>
Syntax
node.normalize()
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.