Interface EnterElement

An interface describing the element type of the Enter Selection group elements created when invoking selection.enter().

interface EnterElement {
    namespaceURI: string;
    ownerDocument: Document;
    appendChild(newChild): Node;
    insertBefore(newChild, refChild): Node;
    querySelector(selectors): Element;
    querySelectorAll(selectors): NodeListOf<Element>;
}

Methods

  • Parameters

    Returns Node

  • Parameters

    Returns Node

  • Parameters

    • selectors: string

    Returns Element

  • Parameters

    • selectors: string

    Returns NodeListOf<Element>

Properties

namespaceURI: string
ownerDocument: Document