ZetCode

JavaScript removeAttribute

last modified April 2, 2025

In this article, we explore the element.removeAttribute method in JavaScript. This method is essential for DOM manipulation, allowing developers to remove specific attributes from HTML elements.

Basic Definition

The removeAttribute method removes an attribute with the specified name from an element. If the attribute doesn't exist, the method does nothing. This is useful for dynamically modifying element properties.

Unlike setting an attribute to an empty string or null, removeAttribute completely removes the attribute from the element. This can affect default behaviors and styling that depend on attribute presence.

Removing a Class Attribute

This example demonstrates how to remove a class attribute from an element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Remove Class Attribute</title>
    <style>
        .highlight {
            background-color: yellow;
            font-weight: bold;
        }
    </style>
</head>
<body>

<p id="text" class="highlight">This text has a highlight class.</p>
<button onclick="removeHighlight()">Remove Highlight</button>

<script>
    function removeHighlight() {
        const element = document.getElementById('text');
        element.removeAttribute('class');
    }
</script>

</body>
</html>

In this example, we have a paragraph with a 'highlight' class that styles it. The button triggers the removal of the class attribute completely.

After removal, the element loses all its class-based styling. This differs from modifying className as it removes the attribute entirely rather than just clearing its value.

Removing Disabled Attribute

This example shows how to enable a disabled button by removing its disabled attribute.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Remove Disabled Attribute</title>
</head>
<body>

<button id="myButton" disabled>Click Me</button>
<button onclick="enableButton()">Enable Button</button>

<script>
    function enableButton() {
        const button = document.getElementById('myButton');
        button.removeAttribute('disabled');
    }
</script>

</body>
</html>

Here we have a disabled button and another button to enable it. The enable function removes the disabled attribute, making the button interactive again.

This demonstrates how removeAttribute can change element behavior. The mere presence of the disabled attribute (regardless of value) disables the button.

Removing Data Attributes

This example demonstrates removing custom data attributes from an element.

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

<div id="user" data-id="12345" data-role="admin">User Information</div>
<button onclick="cleanData()">Remove Data Attributes</button>

<script>
    function cleanData() {
        const userDiv = document.getElementById('user');
        userDiv.removeAttribute('data-id');
        userDiv.removeAttribute('data-role');
    }
</script>

</body>
</html>

In this example, we remove custom data attributes from a div element. Data attributes often store additional information for JavaScript processing.

The removeAttribute method works the same way with data attributes as with standard HTML attributes. This provides a clean way to remove stored data.

Removing Style Attribute

This example shows how to remove inline styles by removing the style attribute.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Remove Style Attribute</title>
    <style>
        #box {
            width: 100px;
            height: 100px;
            background-color: blue;
        }
    </style>
</head>
<body>

<div id="box" style="border: 5px solid red;"></div>
<button onclick="removeInlineStyle()">Remove Inline Style</button>

<script>
    function removeInlineStyle() {
        const box = document.getElementById('box');
        box.removeAttribute('style');
    }
</script>

</body>
</html>

Here we have a div with both external CSS and inline styles. The button removes all inline styles by removing the style attribute completely.

This differs from clearing individual style properties as it removes all inline styles at once. The element then relies solely on external stylesheet rules.

Removing Multiple Attributes

This example demonstrates removing several attributes from an input element.

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

<input id="search" type="text" placeholder="Search..." required disabled>
<button onclick="resetInput()">Reset Input</button>

<script>
    function resetInput() {
        const input = document.getElementById('search');
        input.removeAttribute('required');
        input.removeAttribute('disabled');
        input.removeAttribute('placeholder');
    }
</script>

</body>
</html>

In this example, we remove multiple attributes from an input field with a single function call. Each attribute is removed independently.

This shows how removeAttribute can be used to clean up an element by removing multiple constraints and properties at once. The input becomes more flexible after these removals.

Source

MDN removeAttribute Documentation

In this article, we have shown how to use element.removeAttribute in JavaScript. This method is essential for dynamic DOM manipulation and attribute management 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.