Logos DX
Preparing search index...
@logosdx/dom
<internal>
getElementsByTagNameNS
Function getElementsByTagNameNS
getElementsByTagNameNS
(
namespaceURI
:
"http://www.w3.org/1999/xhtml"
,
localName
:
string
,
)
:
HTMLCollectionOf
<
HTMLElement
>
Returns a list of elements with the given tag name belonging to the given namespace.
MDN Reference
Parameters
namespaceURI
:
"http://www.w3.org/1999/xhtml"
localName
:
string
Returns
HTMLCollectionOf
<
HTMLElement
>
getElementsByTagNameNS
(
namespaceURI
:
"http://www.w3.org/2000/svg"
,
localName
:
string
,
)
:
HTMLCollectionOf
<
SVGElement
>
Parameters
namespaceURI
:
"http://www.w3.org/2000/svg"
localName
:
string
Returns
HTMLCollectionOf
<
SVGElement
>
getElementsByTagNameNS
(
namespaceURI
:
"http://www.w3.org/1998/Math/MathML"
,
localName
:
string
,
)
:
HTMLCollectionOf
<
MathMLElement
>
Parameters
namespaceURI
:
"http://www.w3.org/1998/Math/MathML"
localName
:
string
Returns
HTMLCollectionOf
<
MathMLElement
>
getElementsByTagNameNS
(
namespace
:
string
|
null
,
localName
:
string
,
)
:
HTMLCollectionOf
<
Element
>
Parameters
namespace
:
string
|
null
localName
:
string
Returns
HTMLCollectionOf
<
Element
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
Logos DX
Loading...
Returns a list of elements with the given tag name belonging to the given namespace.
MDN Reference