docs.rodeo

MDN Web Docs mirror

Element: removeAttribute() method

{{ APIRef("DOM") }} 

The {{domxref("Element")}}  method removeAttribute() removes the attribute with the specified name from the element.

Syntax

removeAttribute(attrName)

Parameters

Return value

None ({{jsxref("undefined")}} ).

Usage notes

You should use removeAttribute() instead of setting the attribute value to null either directly or using {{domxref("Element.setAttribute", "setAttribute()")}} . Many attributes will not behave as expected if you set them to null.

Examples

// Given: <div id="div1" disabled width="200px">
document.getElementById("div1").removeAttribute("disabled");
// Now: <div id="div1" width="200px">

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN