JavaScript Remove id from Element

In this tutorial we will learn How To Remove id from HTML Element with JavaScript. removeAttribute() method and getElementById() method can be used to remove id of any HTML tag.

removeAttribute() method

removeAttribute() method removes or deletes the defined attribute from HTML element.

In this example removeAttribute() method is used to remove id attribute from HTML tag.

getElementById() method

getElementById() method selects or targets the HTML element based on it's id.

In this example getElementById() method is used to select the paragraph tag with it's id.

HTML Code

HTML Code is given below, in this code we have a paragraph tag with id named 'yellow' and a button tag with onclick event.

<!DOCTYPE html>
<html>
<head>
<title>JavaScript Remove id from Element</title>
<style>
#yellow
{
background-color: yellow;
}
</style>    
</head>    
<body>
    
    
<p id="yellow">I am a paragraph tag with id "yellow".</p>
<button onclick='removeId()'>Remove id</button>    
    
<script src="script.js"></script>    
</body>
</html>

JavaScript Code

Take a look at the JavaScript code, the code will be executed on a click of button with the help of onclick event.

In this code getElementById() method is used to select the paragraph tag and then removeAttribute() method is used to remove it's id.

<script>
function removeId()
{
    var element = document.getElementById('yellow');
    element.removeAttribute('id');
}
</script>

We can also use id property to remove the id and replace it with nothing.

<script>
function removeId()
{
    var element = document.getElementById('yellow');
    element.id='';
}
</script>

This will not remove the id attribute it will only remove it's value. That is why this method is not recommended because it is important that id attribute has some value, it can't be empty.

Demo

Video Tutorial

Watch video tutorial on How To Remove id from HTML tag with JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript