HTML DOM nodeValue Property Last Updated : 28 Jul, 2025 Comments Improve Suggest changes 5 Likes Like Report The HTML DOM nodeValue Property is used to describe the property of a given node. It is used to set or get the nodeValue in Any Html document. Prerequisites DOM (Document Object Model) Syntax: let x = document.getElementById("nodeId").firstChild; x.nodeType; x.nodeName; x.nodeValue; Parameters: No parameters are required. Return value: The HTML nodeValue property returns the following type of values null: for element and document nodes.attribute value: for any attribute.content: for any text node or comment node. Example: Following example create a paragraph tag which is "divId" and provide a button that produces paragraph tag properties and returns its value to a tag whose id is "GeeksForGeeks". HTML <!DOCTYPE html> <html> <head> <title> HTML | DOM nodeValue Property </title> </head> <body> <center> <h1 style="color:green">GeeksforGeeks</h1> <p> Click the button get the node value of the first button element in the document. </p> <button onclick="myFunction()">Try it</button> <p id="geeks"></p> <script> function myFunction() { let g = document.getElementsByTagName("BUTTON")[0]; let f = g.childNodes[0].nodeValue; document.getElementById("geeks").innerHTML = f; } </script> </center> </body> </html> Output: Supported Browsers: The browser supported by DOM nodeValue properties are listed below: Google Chrome 1 and aboveEdge 12 and aboveInternet Explorer 6 and aboveFirefox 1 and aboveOpera 12.1 and aboveSafari 1 and above Create Quiz Comment S Shahnawaz_Ali Follow 5 Improve S Shahnawaz_Ali Follow 5 Improve Article Tags : Web Technologies HTML Web technologies HTML-DOM HTML-Property +1 More 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