Node.lookupNamespaceURI()
The Node.lookupNamespaceURI()
method accepts a prefix and returns the namespace URI associated with it on the given node if found (and null
if not).
Syntax
var namespace = node.lookupNamespaceURI(prefix);
Parameters
prefix
-
The prefix to look for. If this parameter is
null
, the method will return the default namespace URI, if any.
Return value
A DOMString
containing the namespace URI. If the prefix is not found, it returns null
.
Specifications
Specification |
---|
DOM Standard (DOM) # dom-node-lookupnamespaceuri |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
lookupNamespaceURI |
1 |
12 |
1 |
9 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Node/lookupNamespaceURI