interface NonElementParentNode {
    getElementById(elementId: string): null | Element;
}

Hierarchy-Diagram

UML class diagram of NonElementParentNode
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Methods

  • Returns the first element within node's descendants whose ID is elementId.

    MDN Reference

    Parameters

    • elementId: string

    Returns null | Element