Returns an NodeList containing a list of all descendant elements that match the specified name.

[VBScript]
Public Function GetElementsByTagName( _
   ByVal name As String _
) As NodeList
[JScript]
public function GetElementsByTagName(
   name : String
) : NodeList;

Parameters

name
The name of the tag to match on. The special value "*" matches all tags.

Return Value

An NodeList containing a list of all matching nodes.

See Also

Element Object | Element Members | DOM Namespace