Skip to main content
Module

x/evt/lib/types/lib.dom.ts>HTMLOptGroupElement

💧EventEmitter's typesafe replacement
Go to Latest
interface HTMLOptGroupElement
implements HTMLElement
import { type HTMLOptGroupElement } from "https://deno.land/x/evt@v2.4.3/lib/types/lib.dom.ts";

Provides special properties and methods (beyond the regular HTMLElement object interface they also have available to them by inheritance) for manipulating the layout and presentation of elements.

Properties

disabled: boolean
readonly
form: HTMLFormElement | null

Retrieves a reference to the form that the object is embedded in.

label: string

Sets or retrieves a value that you can use to implement your own label functionality for the object.

Methods

addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void