Gets the element at the specified index.

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

Parameters

name
The name of the element to get.

Return Value

The element with the specified name. If there is no element with the specified name, null is returned.

See Also

HTMLCollection Object | HTMLCollection Members | DOM Namespace