← Back tothis vs that

nodeName vs tagName

Written byPhuoc Nguyen
Created
16 Jun, 2020
Category
DOM
`nodeName` and `tagName` are the properties to get the name of HTML node.
`tagName` is used to get the type of element nodes that have node type of 1. For other type of nodes such as attribute, comment, text, .etc, `nodeName` is used to get the name of node.
Let's take a look at the following example where we have a simple button:
html
<button id="login">Login</button>
The `nodeName` and `tagName` properties are the same for the HTML element:
js
const button = document.getElementById('login');
button.nodeType; // 1
button.nodeName; // 'BUTTON'
button.tagName; // 'BUTTON'
Let's access the node represents the `id` attribute:
js
const idNode = button.getAttributeNode('id');
idNode.nodeType; // 2
idNode.nodeName; // 'id'
idNode.tagName; // undefined
In a similar way, the button text node gives different result for `nodeName` and `tagName`:
js
const content = button.firstChild;
content.nodeType; // 3
content.nodeName; // '#text'
content.tagName; // undefined
If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn