HTML DOM normalize() Method Last Updated : 16 Jun, 2023 Comments Improve Suggest changes 1 Likes Like Report The normalize() method in HTML is used to merge the adjacent text nodes with the first text node and flush out the empty nodes. The normalize() method does not require any parameter. Syntax: node.normalize() Example 1: In this example, we will use normalize() method. HTML <!DOCTYPE html> <html> <head> <title> DOM normalize Method </title> </head> <body onload="normalizeNode()" style="text-align:center"> <h1>GeeksforGeeks</h1> <h2>DOM normalize() Method</h2> <button onclick="normalizeNode()"> Normalize </button> <button onclick="addNode()"> Add node </button> <p>There are <span id="count"></span> child nodes.</p> <script> // onload is used to reset the child text nodes // count when page is refreshed and addNode // function is used for addNode button function addNode() { // Creating a text node named "Normalize" let textNode = document.createTextNode("Normalize "); // Using variable text_body to //access the whole body let text_body = document.body; // Adding text node to the end of the body text_body.appendChild(textNode); // Count is used to store number of child text // nodes present in the document let text_node = document.getElementById("count"); // innerHTML fetches value of text_node and // update it with new value. text_node.innerHTML = text_body.childNodes.length; } // normalizeNode function is used to Normalize button function normalizeNode() { document.normalize(); let text_body = document.body; let node_count = document.getElementById("count"); node_count.innerHTML = text_body.childNodes.length; } </script> </body> </html> Output: Supported Browsers: The browser supported by DOM normalize() Method are listed below: Google Chrome 1 and aboveEdge 12 and aboveInternet Explorer 9 and aboveFirefox 1 and aboveOpera 12.1 and aboveSafari 1 and above Create Quiz Comment A abhishek7 Follow 1 Improve A abhishek7 Follow 1 Improve Article Tags : Web Technologies HTML Web technologies HTML-DOM Explore HTML BasicsHTML Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables9 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms4 min readHTML5 Semantics5 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List5 min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like