Open In App

HTML DOM removeAttribute() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM removeAttribute() method is used to remove an attribute with specified name from the element. It is similar to the removeAttributeNode() method but the difference is that the removeAttributeNode method is used to remove the specified attribute object, but on the other hand, removeAttribute removes the attribute with the specified name. 

Syntax:

element.removeAttribute(name)

Where name is the string that specifies the name of the attribute to remove from the element. It is the required field. 

Example: In this example, we will use DOM removeAttribute() Method.

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM removeAttribute Method
    </title>
    <style>
        .gfg {
            color: green;
        }
    </style>
</head>
<body style="text-align: center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2>
        DOM removeAttribute Method
    </h2>
    <p id="p" class="gfg">
        A computer science portal for geeks.
    </p>
    <button onclick="Geeks()">
        Click Here!
    </button>
    <script>
        function Geeks() {
            //Remove class attributes from 'p' element.
            document.getElementById(
                "p").removeAttribute("class");
        }
    </script>
</body>
</html>


Output: 

 

 Supported Browsers: The browser supported by the removeAttribute() method are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 5
  • Firefox 1
  • Opera 8
  • Safari 1


Last Updated : 13 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads