JS: Remove Element's Attribute Value

By Xah Lee. Date: . Last updated: .
node.removeAttribute(AttributeName)
  • Remove the attribute. No error if attribute doesn't exist.
  • Return undefined.

node is a HTML element object.

AttributeName is a string.

// remove the value of attribute href in first link element
const tt = document.getElementsByTagName("a")[0];
tt.removeAttribute("href");

DOM Common Examples

BUY Ξ£JS JavaScript in Depth