files/en-us/web/api/htmlelement/innertext/index.md
{{APIRef("HTML DOM")}}
The innerText property of the {{domxref("HTMLElement")}} interface represents the rendered text content of a node and its descendants.
As a getter, it approximates the text the user would get if they highlighted the contents of the element with the cursor and then copied it to the clipboard. As a setter this will replace the element's children with the given value, converting any line breaks into {{HTMLElement("br")}} elements.
[!NOTE]
innerTextis easily confused with {{domxref("Node.textContent")}}, but there are important differences between the two. Basically,innerTextis aware of the rendered appearance of text, whiletextContentis not.
A string representing the rendered text content of an element.
If the element itself is not being rendered (for example, is detached from the document or is hidden from view), the returned value is the same as the {{domxref("Node.textContent")}} property.
[!WARNING] Setting
innerTexton a node removes all of the node's children and replaces them with a single text node with the given string value.
This example compares innerText with {{domxref("Node.textContent")}}.
Note how innerText is aware of things like {{htmlElement("br")}} elements, and ignores hidden elements.
<h3>Source element:</h3>
<p id="source">
<style>
#source {
color: red;
}
#text {
text-transform: uppercase;
}
</style>
<span id="text">
Take a look at
how this text
is interpreted below.
</span>
<span style="display:none">HIDDEN TEXT</span>
</p>
<h3>Result of textContent:</h3>
<textarea id="textContentOutput" rows="18" cols="40" readonly>…</textarea>
<h3>Result of innerText:</h3>
<textarea id="innerTextOutput" rows="6" cols="40" readonly>…</textarea>
const source = document.getElementById("source");
const textContentOutput = document.getElementById("textContentOutput");
const innerTextOutput = document.getElementById("innerTextOutput");
textContentOutput.value = source.textContent;
innerTextOutput.value = source.innerText;
{{EmbedLiveSample("Examples", 700, 650)}}
{{Specifications}}
{{Compat}}