HTML DOM innerText Property
Example
Get the inner text of an element:
var x =
document.getElementById("myBtn").innerText;
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The innerText property sets or returns the text content of the specified node, and all its descendants.
If you set the innerText property, any child nodes are removed and replaced by a single Text node containing the specified string.
Note: This property is similar to the textContent property, however there are some differences:
- textContent returns the text content of all elements, while innerText returns the content of all elements, except for <script> and <style> elements.
- innerText will not return the text of elements that are hidden with CSS (textContent will). Try it »
Tip: To set or return the HTML content of an element, use the innerHTML property.
Get the content of the <p> element above with the specified properties:
innerText returns: "This element has extra spacing and
contains a span element."
innerHTML returns: "
This element has extra spacing and contains <span>a span
element</span>."
textContent returns: " This
element has extra spacing and contains a span element."
The innerText property returns just the text, without spacing and inner element tags.
The innerHTML property returns the text, including all spacing and inner element tags.
The textContent property returns the text with spacing, but without inner element tags.