innerText vs innerHTML vs label vs text vs textContent vs outerText

JavascriptHtmlDom

Javascript Problem Overview


I have a dropdown list which is populated by Javascript.

Whilst deciding what should be the default value to show on load, I realised that the following properties showed exactly the same values:

  • innerText
  • innerHTML
  • label
  • text
  • textContent
  • outerText

My own research shows bench marking tests or comparisons between a few of them, but not all.

I can use my own common sense and choose 1 or the other as they provide the same result, but, I'm concerned this is not going to be a good idea if the data were to change.

My findings are:

  • innerText will show the value as is and ignores any HTML formatting which may be included
  • innerHTML will show the value and apply any HTML formatting
  • label appears to be the same as innerText, so I can't see the difference
  • text appears to be the same as innerText but the jQuery shorthand version
  • textContent appears to the same as innerText but keeps formatting (such as \n)
  • outerText appears to be the same as innerText

My research can only take me so far as I can only test what I can think of or read what is published, can any one confirm though if my research is correct and if there is anything special about label and outerText?

Javascript Solutions


Solution 1 - Javascript

From MDN:

> Internet Explorer introduced element.innerText. The intention is pretty much the same [as textContent] with a couple of differences: > > - Note that while textContent gets the content of all elements, including <script> and <style> elements, the mostly equivalent IE-specific property, innerText, does not. > > - innerText is also aware of style and will not return the text of hidden elements, whereas textContent will. > > - As innerText is aware of CSS styling, it will trigger a reflow, whereas textContent will not.

So innerText will not include text that is hidden by CSS, but textContent will.

> innerHTML returns the HTML as its name indicates. Quite often, in order to retrieve or write text within an element, people use innerHTML. textContent should be used instead. Because the text is not parsed as HTML, it's likely to have better performance. Moreover, this avoids an XSS attack vector.

In case you missed that, let me repeat it more clearly: Do not use .innerHTML unless you specifically intend to insert HTML within an element and have taken the necessary precautions to ensure that the HTML you are inserting cannot contain malicious content. If you only want to insert text, use .textContent or if you need to support IE8 and earlier, use feature detection to switch off between .textContent and .innerText.

A main reason that there are so many different properties is that different browsers originally had different names for these properties, and there still isn't complete cross-browser support for all of them. If you are using jQuery, you should stick to .text() since that is designed to smooth out cross-browser differences.*

For some of the others: outerHTML is basically the same as innerHTML, except that it includes the start and end tags of the element it belongs to. I can't seem to find much description of outerText at all. I think that is probably an obscure legacy property and should be avoided.

Solution 2 - Javascript

Addendum to JLRishe's otherwise excellent answer:

The reason innerText and outerText both exist is for symmetry with innerHTML and outerHTML. This becomes important when you assign to the property.

Suppose you've got an element e with HTML code <b>Lorem Ipsum</b>:

e.innerHTML = "<i>Hello</i> World!"; => <b><i>Hello</i> World!</b>
e.outerHTML = "<i>Hello</i> World!"; =>    <i>Hello</i> World!
e.innerText = "Hello World!";        => <b>Hello World!</b>
e.outerText = "Hello World!";        =>    Hello World!

Solution 3 - Javascript

A dropdown list comprises a collection of Option objects, so you should use the .text property to inspect the textual representation of the element, i.e.

<option value="123">text goes here</option>
                    ^^^^^^^^^^^^^^

Btw,

> .text appears to be the same as .innerText but the JQuery shorthand version

That's not correct; $(element).text() is the jQuery version whereas element.text is the property access version.

Solution 4 - Javascript

text and label remove extra spaces. I got these results when querying options in a dropdown:

e.textContent = "A    B C   D     "
e.text = "A B C D"
e.label = "A B C D"

Solution 5 - Javascript

textContent will not format (\n)

Solution 6 - Javascript

See the browsers compatibility http://www.quirksmode.org/dom/html/ if you are targeting specific browsers. Because it seems like they all have their own way of doing things. That is why is is better to use JQuery .text() (http://api.jquery.com/text/) if you do not want to fiddle around.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMyDaftQuestionsView Question on Stackoverflow
Solution 1 - JavascriptJLRisheView Answer on Stackoverflow
Solution 2 - JavascriptAnonymousView Answer on Stackoverflow
Solution 3 - JavascriptJa͢ckView Answer on Stackoverflow
Solution 4 - JavascriptJay JayView Answer on Stackoverflow
Solution 5 - JavascriptHariharanView Answer on Stackoverflow
Solution 6 - JavascriptnywoozView Answer on Stackoverflow