Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HTMLEmbedElement

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

interface HTMLEmbedElement extends HTMLElement {
align: string;
height: string;
name: string;
src: string;
type: string;
width: string;
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;
getSVGDocument(): Document | null;
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;
}
var HTMLEmbedElement: {
prototype: HTMLEmbedElement;
}
;

§Extends

§Properties

§
align: string
[src]
§
height: string
[src]

Sets or retrieves the height of the object.

§
name: string
[src]

Sets or retrieves the name of the object.

§
src: string
[src]

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

§
type: string
[src]
§
width: string
[src]

Sets or retrieves the width of the object.

§Methods

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