Wednesday, July 3, 2024
HomeLanguagesJavascriptDifference between innerText and innerHTML

Difference between innerText and innerHTML

innerText and innerHTML are both properties of JavaScript. However, there are differences in which the text is handled. Let us check the syntax of the two and then take an example to look at the differences. 

Syntax: 

Let us assume that we have a JavaScript variable called x.

let x = document.getElementById('test');
  • innerText
x.innerText
  • innerHTML
x.innerHTML

Example: 

html




<!DOCTYPE html>
<html>
<head>
    <title>
        Difference between
        InnerHTML and InnerText
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green">neveropen</h1>
 
    <div id="test">
        The following element contains some
        <codes>code</codes> and
        <italic>some text</italic>.
    </div>
    <p></p>
    <button onClick="innerHTMLFn()">
        innerHTML
    </button>
    <button onClick="innerTextFn()">
        innerText
    </button>
    <p id="op"></p>
 
    <script>
        function innerTextFn() {
            let x = document.getElementById('test');
            alert(x.innerText);
        }
 
        function innerHTMLFn() {
            let x = document.getElementById('test');
            alert(x.innerHTML);
        }
    </script>
</body>
</html>


Output 

 

Differences: 

As we can see from the example above the innerText property sets or returns the text content as plain text of the specified node, and all its descendants whereas the innerHTML property gets and sets the plain text or HTML contents in the elements. Unlike innerText, inner HTML lets you work with HTML rich text and doesn’t automatically encode and decode text.

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments