ZetCode

JavaScript hasAttribute

last modified April 2, 2025

In this article, we explore the element.hasAttribute method in JavaScript. This method is essential for checking attribute presence on DOM elements, allowing developers to verify element states and properties.

Basic Definition

The hasAttribute method returns a boolean value indicating whether the specified element has the given attribute. This is useful for conditional logic based on element attributes.

The method takes a single parameter - the name of the attribute to check. It returns true if the attribute exists, regardless of its value, and false if the attribute doesn't exist.

Basic hasAttribute Check

This example demonstrates how to check if an element has a specific attribute.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Basic hasAttribute</title>
</head>
<body>

<button id="myBtn" disabled>Click me</button>

<script>
    const btn = document.getElementById('myBtn');
    const hasDisabled = btn.hasAttribute('disabled');
    console.log('Button has disabled attribute:', hasDisabled);
</script>

</body>
</html>

In this basic example, we have a button with a disabled attribute. The JavaScript code checks for this attribute using hasAttribute and logs the result to the console.

This demonstrates the fundamental usage of hasAttribute to verify attribute presence. The method is case-insensitive for HTML elements but case-sensitive for XML/XHTML documents.

Checking Data Attributes

This example shows how to check for custom data attributes using hasAttribute.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Data Attributes Check</title>
</head>
<body>

<div id="userCard" data-user-id="12345">User Profile</div>

<script>
    const userCard = document.getElementById('userCard');
    const hasUserId = userCard.hasAttribute('data-user-id');
    
    if (hasUserId) {
        console.log('User ID exists:', userCard.getAttribute('data-user-id'));
    } else {
        console.log('No user ID found');
    }
</script>

</body>
</html>

Here we have a div with a custom data attribute. The code first checks if the attribute exists before attempting to access its value, demonstrating defensive programming.

This pattern is useful when working with optional data attributes. It prevents errors that might occur when trying to access non-existent attributes.

Conditional Styling Based on Attributes

This example demonstrates how to apply conditional styling based on attributes.

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

<p id="text1" important>This is important text</p>
<p id="text2">This is regular text</p>

<script>
    const text1 = document.getElementById('text1');
    const text2 = document.getElementById('text2');
    
    if (text1.hasAttribute('important')) {
        text1.classList.add('highlight');
    }
    
    if (text2.hasAttribute('important')) {
        text2.classList.add('highlight');
    }
</script>

</body>
</html>

In this example, we have two paragraphs - one with an "important" attribute. The JavaScript code checks for this attribute and applies a highlight class only to elements that have it.

This shows how hasAttribute can be used to implement conditional styling logic. The method helps create more dynamic and attribute-driven UIs.

Form Validation with hasAttribute

This example demonstrates using hasAttribute for form validation scenarios.

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

<form id="myForm">
    <input type="text" id="username" required>
    <button type="submit">Submit</button>
</form>

<script>
    const form = document.getElementById('myForm');
    const username = document.getElementById('username');
    
    form.addEventListener('submit', (e) => {
        if (username.hasAttribute('required') && !username.value) {
            e.preventDefault();
            alert('Username is required!');
        }
    });
</script>

</body>
</html>

Here we have a form with a required username field. The code checks for the required attribute before validating the form submission.

This demonstrates how hasAttribute can be used to implement custom validation logic that respects HTML5 form attributes while adding custom behavior.

Checking Multiple Attributes

This example shows how to check for multiple attributes on an element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Multiple Attributes Check</title>
</head>
<body>

<a id="myLink" href="https://example.com" target="_blank" rel="noopener">Visit Example</a>

<script>
    const link = document.getElementById('myLink');
    const attributes = ['href', 'target', 'rel', 'nonexistent'];
    
    attributes.forEach(attr => {
        console.log(`Link has ${attr}:`, link.hasAttribute(attr));
    });
</script>

</body>
</html>

In this example, we check multiple attributes on a link element. The code iterates through an array of attribute names and checks each one.

This pattern is useful when you need to verify several attributes at once. The example includes both existing and non-existent attributes to demonstrate the method's behavior in different cases.

Source

MDN hasAttribute Documentation

In this article, we have shown how to use element.hasAttribute in JavaScript. This method is essential for attribute verification and conditional logic 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.