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

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

Parameters

tagName
The tag name to match.

Return Value

An NodeList containing a list of all matching nodes.

See Also

Document Object | Document Members | DOM Namespace