JavaScript element.outerText Property

You are Here:

JavaScript element.outerText Property

The element.outerText property as a setter, it removes the current node and replaces it with the given text. As a getter, it it returns the same value as element.innerText.

Note: This property is non-standard.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <div> <p>Click on the to display the outerHTML of the div.</p> </div> <button onclick="myFunction()">Click Me</button> <p id="point"></p> <script> var x = document.getElementById("point"); var elem = document.getElementsByTagName("div")[0]; function myFunction(){ x.innerText = elem.outerText; } </script> </body> </html>

Syntax

element.outerText

Return Values

ValueExplanation
StringReturns a DOMString representing the rendered text content of an element.

outerText vs innerText

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <button onclick="myInnerText()">innerText</button> <button onclick="myOuterText()">outerText</button> <p>Output: <b></b></p> <script> var x = document.getElementById("point"); var elem = document.getElementsByTagName("b")[0]; function myInnerText(){ elem.innerText = "Hello world"; } function myOuterText(){ elem.outerText = "Hello world"; } </script> </body> </html>

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.

Share this Page

Meet the Author