Interface HTMLOrSVGElement

    interface HTMLOrSVGElement {
        autofocus: boolean;
        dataset: DOMStringMap;
        nonce?: string;
        tabIndex: number;
        blur(): void;
        focus(options?: FocusOptions): void;
    }
    Hierarchy

    Properties

    autofocus: boolean
    dataset: DOMStringMap
    nonce?: string
    tabIndex: number

    Methods