HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

getElementsByTagNameNS

Description

The getElementsByTagNameNS of Document for JS returns a HTMLCollection of all descendant elements if namespace and localName are "*".

If only namespace is "*", returns a HTMLCollection of all descendant elements whose local name is localName.

If only localName is "*", returns a HTMLCollection of all descendant elements whose namespace is namespace.

Otherwise, returns a HTMLCollection of all descendant elements whose namespace is namespace and local name is localName.

Syntax

collection = document.getElementsByTagNameNS(namespace, localName)

Parameters

namespace

A null or a non-empty string.

localName

A local name.

Examples

1 · * * · document

2 · * * · descendant · all

3 · * * · descendant · first

4 · * * · descendant · last

5 · * localName · document · all

6 · * localName · document · first

7 · * localName · document · last

8 · * localName · descendant · all

9 · * localName · descendant · first

10 · * localName · descendant · last

11 · namespace * · document

12 · namespace * · descendant · all

13 · namespace * · descendant · first

14 · namespace * · descendant · last

15 · namespace localName · document · all

16 · namespace localName · document · first

17 · namespace localName · document · last

18 · namespace localName · descendant · all

19 · namespace localName · descendant · first

20 · namespace localName · descendant · last