Skip to main content
Module

x/evt/mod.ts>dom.HTMLEmbedElement

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

Provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating elements.

Properties

deprecated
align: string
height: string

Sets or retrieves the height of the object.

deprecated
name: string
src: string

Sets or retrieves a URL to be loaded by the object.

type: string
width: string

Sets or retrieves the width of the object.

Methods

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