DEV Community

Cover image for JavaScript DOM - Part 4 - innerHTML vs innerText vs textContent [video + article]
Tharun Shiv
Tharun Shiv

Posted on • Edited on

17 5

Textcontent vs Innerhtml JavaScript DOM - Part 4 - innerHTML vs innerText vs textContent [video + article]

This is going to be a multi-part Video + article tutorial series on JavaScript DOM. You're reading Part 4

You can read Part 3 here:

innerText | innerHTML | textContent

All three of them are attributes that you can get from the elements. They are not the same and we will be looking at how they are different with the below illustrations.

innerText

When applied to an element, it returns only the text which is inside the element, the text part wrapped by the element and nothing else, it also ignores the space.

syntax:

element.innerText
Enter fullscreen mode Exit fullscreen mode

example:

<p id="experiment">
  <br />
  Hello this is <span>Tharun</span> How are you?
  <br />
</p>
Enter fullscreen mode Exit fullscreen mode
let p = document.getElementById('experiment');
console.log(p.innerText)
Enter fullscreen mode Exit fullscreen mode

output

"
Hello this is Tharun How are you?
"
Enter fullscreen mode Exit fullscreen mode

innerHTML

When applied to an element, it returns the text part enclosed by the element, along with the HTML tags inside, and also considers the spacing given inside. Look at the example below.

syntax:

element.innerHTML
Enter fullscreen mode Exit fullscreen mode

example:

<p id="experiment">
  <br />
  Hello this is <span>Tharun</span> How are you?
  <br />
</p>
Enter fullscreen mode Exit fullscreen mode
let p = document.getElementById('experiment');
console.log(p.innerHTML)
Enter fullscreen mode Exit fullscreen mode

output

"
  <br>
  Hello this is <span>Tharun<span/> How are you?
  <br>
"
Enter fullscreen mode Exit fullscreen mode

textContent

When applied to an element, it returns the text part enclosed by the element and considers the spacing given inside. Look at the example below.

syntax:

element.textContent
Enter fullscreen mode Exit fullscreen mode

example:

<p id="experiment">
  <br />
  Hello this is <span>Tharun</span> How are you?
  <br />
</p>
Enter fullscreen mode Exit fullscreen mode
let p = document.getElementById('experiment');
console.log(p.textContent)
Enter fullscreen mode Exit fullscreen mode

output

"

  Hello this is Tharun How are you?

"
Enter fullscreen mode Exit fullscreen mode

So these are the main differences between these three that you need to know.
You can access and do a lot more magic by grabbing the elements. We will explore and do stuff in this series.

Next Part coming tomorrow, where we discuss about how you can get multiple elements by using getElementsByClassName.

Thank you for reading 😊

Considering Subscribing to my YouTube Channel if you like the Video content: https://youtube.com/c/developerTharun

Written by,

Thank you for reading, This is Tharun Shiv a.k.a Developer Tharun

Tharun Shiv

Heroku

Amplify your impact where it matters most — building exceptional apps.

Leave the infrastructure headaches to us, while you focus on pushing boundaries, realizing your vision, and making a lasting impression on your users.

Get Started

Top comments (7)

Collapse
 
venkat121998 profile image
venkat anirudh

These differences were always confusing. Good article. Now I get it. 👍

Collapse
 
developertharun profile image
Tharun Shiv

thank you, glad it helped

Collapse
 
chandrika56 profile image
Jaya chandrika reddy

Yeah, same here

Collapse
 
developertharun profile image
Tharun Shiv

thank you, glad it helped

Collapse
 
chandrika56 profile image
Jaya chandrika reddy

Good series.. Looking forward for more

Collapse
 
developertharun profile image
Tharun Shiv

Sure, 10 more parts to the series, then we move on to the project 😊

Collapse
 
digvijaysingh21 profile image
digvijaysingh21

please add here only 6 are here

ACI image

ACI.dev: Fully Open-source AI Agent Tool-Use Infra (Composio Alternative)

100% open-source tool-use platform (backend, dev portal, integration library, SDK/MCP) that connects your AI agents to 600+ tools with multi-tenant auth, granular permissions, and access through direct function calling or a unified MCP server.

Check out our GitHub!

Join the Runner H "AI Agent Prompting" Challenge: $10,000 in Prizes for 20 Winners!

Runner H is the AI agent you can delegate all your boring and repetitive tasks to - an autonomous agent that can use any tools you give it and complete full tasks from a single prompt.

Check out the challenge

DEV is bringing live events to the community. Dismiss if you're not interested. ❤️