interface dom.HTMLTableSectionElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.8/lib/types/index.ts";
const { HTMLTableSectionElement } = dom;
Provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of sections, that is headers, footers and bodies, in an HTML table.
Properties
readonly
rows: HTMLCollectionOf<HTMLTableRowElement>Sets or retrieves the number of horizontal rows contained in the object.
Methods
Removes the specified row (tr) from the element and from the rows collection.
insertRow(index?: number): HTMLTableRowElement
Creates a new row (tr) in the table, and adds the row to the rows collection.
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,