Easy Tutorial
❮ Dom Met Node Haschildnodes Prop Document Xmlencoding ❯

XML DOM getElementsByTagName() Method



Definition and Usage

The getElementsByTagName() method returns a NodeList of all elements with a specified name.

Syntax

Parameter Description
name A string specifying the tag name to search for. The value "*" matches all tags.

Example

The following code snippet uses loadXMLDoc() to load "books.xml" into xmlDoc and retrieves the values of all <title> elements:

Example

Output:


❮ Dom Met Node Haschildnodes Prop Document Xmlencoding ❯