Baseline Widely available
The getAttributeNodeNS()
method of the Element
interface returns the namespaced Attr
node of an element.
This method is useful if you need the namespaced attribute's instance properties. If you only need the namespaced attribute's value, you can use the getAttributeNS()
method instead.
If you need the Attr
node of an element in HTML documents and the attribute is not namespaced, use the getAttributeNode()
method instead.
getAttributeNodeNS(namespace, nodeName)
Parameters
namespace
A string specifying the namespace of the attribute.
nodeName
A string specifying the name of the attribute.
The node for specified attribute.
NotesgetAttributeNodeNS
is more specific than getAttributeNode in that it allows you to specify attributes that are part of a particular namespace. The corresponding setter method is setAttributeNodeNS.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4