removeAttribute()
Introduction to JavaScript removeAttribute()
method
removeAttribute()
methodThe removeAttribute()
removes an attribute with a specified name from an element:
Parameters
The removeAttribute()
accepts an argument which is the name of the attribute that you want to remove. If the attribute does not exist, the removeAttribute()
method wil not raise an error.
Return value
The removeAttribute()
returns a value of undefined
.
Usage notes
HTML elements have some attributes which are Boolean attributes. To set false
to the Boolean attributes, you cannot simply use the setAttribute()
method, but you have to remove the attribute entirely using the removeAttribute()
method.
For example, the values of the disabled
attributes are true
in the following cases:
Similarly, the values of the following readonly
attributes are true
:
JavaScript removeAttribute()
example
removeAttribute()
exampleThe following example uses the removeAttribute()
method to remove the target
attribute from the link element with the id js
:
How it works:
Select the link element with id
js
using thequerySelector()
method.Remove the
target
attribute by calling theremoveAttribute()
on the selected link element.
Summary
Use the
removeAttribute()
to remove an attribute from a specified element.Setting the value of a Boolean attribute to
false
will not work; use theremoveAttribute()
method instead.
Last updated