DOM: Remove Element's Attribute Value
node.removeAttribute(attribute_name)
-
Remove the attribute. No error if attribute doesn't exist. Return
undefined
.
The node
is a HTML element object.
attribute_name is a string.
// remove the value of attribute βhrefβ in first link element const tt = document.getElementsByTagName("a")[0]; tt.removeAttribute("href");