Skip to main content
Module

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

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

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