Skip to main content Accessibility Feedback

Traversing the DOM

Node.parentNode

Get the parent of an element.

<div id="app">
	<h1>Hello, world!</h1>
</div>
let h1 = document.querySelector('h1');

// returns the #app element
let parent = h1.parentNode;

Preorder my new course on Web Components! Want to learn how to build Web Components from scratch, master best practices, and more? Preorder today and get $100 off of the launch price.


Find this useful? You can support my work by purchasing an annual membership.