ZetCode

JavaScript element.closest()

last modified April 2, 2025

In this article, we explore the element.closest() method in JavaScript. This method is essential for DOM traversal, allowing developers to find the closest ancestor element that matches a CSS selector.

Basic Definition

The element.closest() method returns the closest ancestor of the current element that matches the specified CSS selector. It traverses up the DOM tree from the current element.

If no matching element is found, the method returns null. The selector must be a valid CSS selector string. The method starts checking from the element itself before moving up the DOM tree.

Basic closest() Example

This example demonstrates how to find the closest parent div of a button element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Basic closest()</title>
</head>
<body>

<div class="container">
    <button class="btn">Click me</button>
</div>

<script>
    const btn = document.querySelector('.btn');
    const container = btn.closest('.container');
    console.log(container); // Logs the div.container element
</script>

</body>
</html>

In this basic example, we have a button inside a div with class "container". The JavaScript code finds the button, then uses closest() to get its closest ancestor with class "container".

This demonstrates the fundamental usage of closest() to navigate up the DOM tree. The method is particularly useful when dealing with nested structures where you need to find a specific parent element.

Finding Closest Table Row

This example shows how to find the closest table row from a clicked table cell.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Table Row Example</title>
</head>
<body>

<table>
    <tr>
        <td>Row 1, Cell 1</td>
        <td>Row 1, Cell 2</td>
    </tr>
    <tr>
        <td>Row 2, Cell 1</td>
        <td>Row 2, Cell 2</td>
    </tr>
</table>

<script>
    document.querySelector('table').addEventListener('click', function(e) {
        if (e.target.tagName === 'TD') {
            const row = e.target.closest('tr');
            console.log('Clicked row:', row);
        }
    });
</script>

</body>
</html>

Here we have a simple table with two rows. When a table cell is clicked, the event handler uses closest() to find the containing row element.

This demonstrates how closest() can be useful in event delegation scenarios. Instead of adding event listeners to each row, we can handle events at the table level and find the relevant row when needed.

Finding Closest Form Element

This example demonstrates finding the closest form from an input element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Form Example</title>
</head>
<body>

<form id="userForm">
    <div class="form-group">
        <input type="text" name="username" placeholder="Username">
    </div>
    <button type="submit">Submit</button>
</form>

<script>
    const input = document.querySelector('input[name="username"]');
    const form = input.closest('form');
    console.log('Form ID:', form.id); // Logs "userForm"
</script>

</body>
</html>

In this example, we have an input field nested inside a form. The JavaScript code finds the input element, then uses closest() to locate its containing form element.

This shows how closest() can simplify form handling by allowing easy access to the form element from any of its child elements, regardless of nesting depth.

Checking for Closest Matching Class

This example demonstrates checking if an element has a parent with a specific class.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Class Check Example</title>
    <style>
        .highlight { background-color: yellow; }
    </style>
</head>
<body>

<div class="highlight">
    <p>This is some text <span>with a span element</span></p>
</div>

<script>
    const span = document.querySelector('span');
    if (span.closest('.highlight')) {
        console.log('Span is inside a highlighted element');
        span.style.fontWeight = 'bold';
    }
</script>

</body>
</html>

Here we have a span element inside a paragraph, which is inside a div with class "highlight". The JavaScript checks if the span has a highlighted ancestor.

This demonstrates how closest() can be used for conditional logic based on an element's ancestors. It's particularly useful for theming or styling components based on their context.

Event Delegation with closest()

This example shows how to use closest() in event delegation scenarios.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Event Delegation Example</title>
</head>
<body>

<div class="button-group">
    <button class="action-btn" data-action="save">Save</button>
    <button class="action-btn" data-action="delete">Delete</button>
</div>

<script>
    document.addEventListener('click', function(e) {
        const btn = e.target.closest('.action-btn');
        if (btn) {
            console.log('Action:', btn.dataset.action);
        }
    });
</script>

</body>
</html>

In this example, we have multiple buttons with a common class. Instead of adding event listeners to each button, we use event delegation at the document level and closest() to identify button clicks.

This demonstrates an efficient pattern for handling events on multiple similar elements. The closest() method helps ensure we only respond to clicks on the intended elements, even if they contain child elements.

Source

MDN closest() Documentation

In this article, we have shown how to use element.closest() in JavaScript. This method is powerful for DOM traversal and ancestor element selection in web development.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all JS DOM tutorials.