This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Returns the specified attribute of the specified element, as an Attr node.
This method is useful if you need the attribute's instance properties. If you only need the attribute's value, you can use the getAttribute() method instead.
getAttributeNode(attrName)
attrNameA string containing the name of the attribute.
An Attr node for the attribute.
// html: <div id="top" />
let t = document.getElementById("top");
let idAttr = t.getAttributeNode("id");
alert(idAttr.value === "top");
When called on an HTML element in a DOM flagged as an HTML document, getAttributeNode lower-cases its argument before proceeding.
The Attr node inherits from Node, but is not considered a part of the document tree. Common Node attributes like parentNode, previousSibling, and nextSibling are null for an Attr node. You can, however, get the element to which the attribute belongs with the ownerElement property.
| Specification |
|---|
| DOM> # dom-element-getattributenode> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
getAttributeNode |
1 | 12 | 1 | ≤12.1 | 1 | 18 | 4 | ≤12.1 | 1 | 1.0 | 4.4 | 1 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Element/getAttributeNode