Search Docs
Loading...
Skip to content

Interface: HTMLCreativeEngineCanvasElement

A wrapper around a plain canvas

The idea is to shield the user from the weird semantics of changing width and height of a canvas by making this a opaque block element instead and managing the internal render resolution of the canvas dynamically

Extends#

  • HTMLElement

Accessors#

classList#

Get Signature#

get classList(): DOMTokenList;

The Element.classList is a read-only property that returns a live DOMTokenList collection of the class attributes of the element.

MDN Reference

Returns#

DOMTokenList

Set Signature#

set classList(value): void;
Parameters#
ParameterType
valuestring
Returns#

void

Inherited from#

HTMLElement.classList

part#

Get Signature#

get part(): DOMTokenList;

The part property of the Element interface represents the part identifier(s) of the element (i.e., set using the part attribute), returned as a DOMTokenList.

MDN Reference

Returns#

DOMTokenList

Set Signature#

set part(value): void;
Parameters#
ParameterType
valuestring
Returns#

void

Inherited from#

HTMLElement.part

textContent#

Get Signature#

get textContent(): string;

MDN Reference

Returns#

string

Set Signature#

set textContent(value): void;

The textContent property of the Node interface represents the text content of the node and its descendants.

MDN Reference

Parameters#
ParameterType
valuestring
Returns#

void

Inherited from#

HTMLElement.textContent

style#

Get Signature#

get style(): CSSStyleDeclaration;

MDN Reference

Returns#

CSSStyleDeclaration

Set Signature#

set style(cssText): void;
Parameters#
ParameterType
cssTextstring
Returns#

void

Inherited from#

HTMLElement.style

Methods#

clear()#

clear(): void;

Clear the canvas

This is useful when mounting the canvas into a new position in the DOM. If the canvas is not cleared, it will appear in the new DOM position, with its contents stretched to the new size. It will re-render correctly during the next animation frame, but for a brief moment the canvas contents can flash distorted.

Call clear() before mounting into the DOM to avoid this. This will cause the canvas to be cleared until rendering the next frame.

Returns#

void


animate()#

animate(keyframes, options?): Animation;

MDN Reference

Parameters#

ParameterType
keyframesKeyframe[]
options?number

Returns#

Animation

Inherited from#

HTMLElement.animate

getAnimations()#

getAnimations(options?): Animation[];

MDN Reference

Parameters#

ParameterType
options?GetAnimationsOptions

Returns#

Animation[]

Inherited from#

HTMLElement.getAnimations

after()#

after(...nodes): void;

Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.after

before()#

before(...nodes): void;

Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.before

remove()#

remove(): void;

Removes node.

MDN Reference

Returns#

void

Inherited from#

HTMLElement.remove

replaceWith()#

replaceWith(...nodes): void;

Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.replaceWith

attachShadow()#

attachShadow(init): ShadowRoot;

The Element.attachShadow() method attaches a shadow DOM tree to the specified element and returns a reference to its ShadowRoot.

MDN Reference

Parameters#

ParameterType
initShadowRootInit

Returns#

ShadowRoot

Inherited from#

HTMLElement.attachShadow

checkVisibility()#

checkVisibility(options?): boolean;

The checkVisibility() method of the Element interface checks whether the element is visible.

MDN Reference

Parameters#

ParameterType
options?CheckVisibilityOptions

Returns#

boolean

Inherited from#

HTMLElement.checkVisibility

closest()#

Call Signature#

closest<K>(selector): HTMLElementTagNameMap[K];

The closest() method of the Element interface traverses the element and its parents (heading toward the document root) until it finds a node that matches the specified CSS selector.

MDN Reference

Type Parameters#
Type Parameter
K extends keyof HTMLElementTagNameMap
Parameters#
ParameterType
selectorK
Returns#

HTMLElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

closest<K>(selector): SVGElementTagNameMap[K];
Type Parameters#
Type Parameter
K extends keyof SVGElementTagNameMap
Parameters#
ParameterType
selectorK
Returns#

SVGElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

closest<K>(selector): MathMLElementTagNameMap[K];
Type Parameters#
Type Parameter
K extends keyof MathMLElementTagNameMap
Parameters#
ParameterType
selectorK
Returns#

MathMLElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

closest<E>(selectors): E;
Type Parameters#
Type ParameterDefault type
E extends ElementElement
Parameters#
ParameterType
selectorsstring
Returns#

E

Inherited from#
HTMLElement.closest

computedStyleMap()#

computedStyleMap(): StylePropertyMapReadOnly;

The computedStyleMap() method of the Element interface returns a StylePropertyMapReadOnly interface which provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.

MDN Reference

Returns#

StylePropertyMapReadOnly

Inherited from#

HTMLElement.computedStyleMap

getAttribute()#

getAttribute(qualifiedName): string;

The getAttribute() method of the element.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring

Returns#

string

Inherited from#

HTMLElement.getAttribute

getAttributeNS()#

getAttributeNS(namespace, localName): string;

The getAttributeNS() method of the Element interface returns the string value of the attribute with the specified namespace and name.

MDN Reference

Parameters#

ParameterType
namespacestring
localNamestring

Returns#

string

Inherited from#

HTMLElement.getAttributeNS

getAttributeNames()#

getAttributeNames(): string[];

The getAttributeNames() method of the array.

MDN Reference

Returns#

string[]

Inherited from#

HTMLElement.getAttributeNames

getAttributeNode()#

getAttributeNode(qualifiedName): Attr;

Returns the specified attribute of the specified element, as an Attr node.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring

Returns#

Attr

Inherited from#

HTMLElement.getAttributeNode

getAttributeNodeNS()#

getAttributeNodeNS(namespace, localName): Attr;

The getAttributeNodeNS() method of the Element interface returns the namespaced Attr node of an element.

MDN Reference

Parameters#

ParameterType
namespacestring
localNamestring

Returns#

Attr

Inherited from#

HTMLElement.getAttributeNodeNS

getBoundingClientRect()#

getBoundingClientRect(): DOMRect;

The Element.getBoundingClientRect() method returns a position relative to the viewport.

MDN Reference

Returns#

DOMRect

Inherited from#

HTMLElement.getBoundingClientRect

getClientRects()#

getClientRects(): DOMRectList;

The getClientRects() method of the Element interface returns a collection of DOMRect objects that indicate the bounding rectangles for each CSS border box in a client.

MDN Reference

Returns#

DOMRectList

Inherited from#

HTMLElement.getClientRects

getElementsByClassName()#

getElementsByClassName(classNames): HTMLCollectionOf<Element>;

The Element method getElementsByClassName() returns a live specified class name or names.

MDN Reference

Parameters#

ParameterType
classNamesstring

Returns#

HTMLCollectionOf<Element>

Inherited from#

HTMLElement.getElementsByClassName

getElementsByTagName()#

Call Signature#

getElementsByTagName<K>(qualifiedName): HTMLCollectionOf<HTMLElementTagNameMap[K]>;

The Element.getElementsByTagName() method returns a live All descendants of the specified element are searched, but not the element itself.

MDN Reference

Type Parameters#
Type Parameter
K extends keyof HTMLElementTagNameMap
Parameters#
ParameterType
qualifiedNameK
Returns#

HTMLCollectionOf<HTMLElementTagNameMap[K]>

Inherited from#
HTMLElement.getElementsByTagName

Call Signature#

getElementsByTagName<K>(qualifiedName): HTMLCollectionOf<SVGElementTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof SVGElementTagNameMap
Parameters#
ParameterType
qualifiedNameK
Returns#

HTMLCollectionOf<SVGElementTagNameMap[K]>

Inherited from#
HTMLElement.getElementsByTagName

Call Signature#

getElementsByTagName<K>(qualifiedName): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof MathMLElementTagNameMap
Parameters#
ParameterType
qualifiedNameK
Returns#

HTMLCollectionOf<MathMLElementTagNameMap[K]>

Inherited from#
HTMLElement.getElementsByTagName

Call Signature#

getElementsByTagName<K>(qualifiedName): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof HTMLElementDeprecatedTagNameMap
Parameters#
ParameterType
qualifiedNameK
Returns#

HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>

Deprecated#
Inherited from#
HTMLElement.getElementsByTagName

Call Signature#

getElementsByTagName(qualifiedName): HTMLCollectionOf<Element>;
Parameters#
ParameterType
qualifiedNamestring
Returns#

HTMLCollectionOf<Element>

Inherited from#
HTMLElement.getElementsByTagName

getElementsByTagNameNS()#

Call Signature#

getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf<HTMLElement>;

The Element.getElementsByTagNameNS() method returns a live HTMLCollection of elements with the given tag name belonging to the given namespace.

MDN Reference

Parameters#
ParameterType
namespaceURI"http://www.w3.org/1999/xhtml"
localNamestring
Returns#

HTMLCollectionOf<HTMLElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf<SVGElement>;
Parameters#
ParameterType
namespaceURI"http://www.w3.org/2000/svg"
localNamestring
Returns#

HTMLCollectionOf<SVGElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

getElementsByTagNameNS(namespaceURI, localName): HTMLCollectionOf<MathMLElement>;
Parameters#
ParameterType
namespaceURI"http://www.w3.org/1998/Math/MathML"
localNamestring
Returns#

HTMLCollectionOf<MathMLElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

getElementsByTagNameNS(namespace, localName): HTMLCollectionOf<Element>;
Parameters#
ParameterType
namespacestring
localNamestring
Returns#

HTMLCollectionOf<Element>

Inherited from#
HTMLElement.getElementsByTagNameNS

getHTML()#

getHTML(options?): string;

The getHTML() method of the Element interface is used to serialize an element’s DOM to an HTML string.

MDN Reference

Parameters#

ParameterType
options?GetHTMLOptions

Returns#

string

Inherited from#

HTMLElement.getHTML

hasAttribute()#

hasAttribute(qualifiedName): boolean;

The Element.hasAttribute() method returns a Boolean value indicating whether the specified element has the specified attribute or not.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring

Returns#

boolean

Inherited from#

HTMLElement.hasAttribute

hasAttributeNS()#

hasAttributeNS(namespace, localName): boolean;

The hasAttributeNS() method of the Element interface returns a boolean value indicating whether the current element has the specified attribute with the specified namespace.

MDN Reference

Parameters#

ParameterType
namespacestring
localNamestring

Returns#

boolean

Inherited from#

HTMLElement.hasAttributeNS

hasAttributes()#

hasAttributes(): boolean;

The hasAttributes() method of the Element interface returns a boolean value indicating whether the current element has any attributes or not.

MDN Reference

Returns#

boolean

Inherited from#

HTMLElement.hasAttributes

hasPointerCapture()#

hasPointerCapture(pointerId): boolean;

The hasPointerCapture() method of the pointer capture for the pointer identified by the given pointer ID.

MDN Reference

Parameters#

ParameterType
pointerIdnumber

Returns#

boolean

Inherited from#

HTMLElement.hasPointerCapture

insertAdjacentElement()#

insertAdjacentElement(where, element): Element;

The insertAdjacentElement() method of the relative to the element it is invoked upon.

MDN Reference

Parameters#

ParameterType
whereInsertPosition
elementElement

Returns#

Element

Inherited from#

HTMLElement.insertAdjacentElement

insertAdjacentHTML()#

insertAdjacentHTML(position, string): void;

The insertAdjacentHTML() method of the the resulting nodes into the DOM tree at a specified position.

MDN Reference

Parameters#

ParameterType
positionInsertPosition
stringstring

Returns#

void

Inherited from#

HTMLElement.insertAdjacentHTML

insertAdjacentText()#

insertAdjacentText(where, data): void;

The insertAdjacentText() method of the Element interface, given a relative position and a string, inserts a new text node at the given position relative to the element it is called from.

MDN Reference

Parameters#

ParameterType
whereInsertPosition
datastring

Returns#

void

Inherited from#

HTMLElement.insertAdjacentText

matches()#

matches(selectors): boolean;

The matches() method of the Element interface tests whether the element would be selected by the specified CSS selector.

MDN Reference

Parameters#

ParameterType
selectorsstring

Returns#

boolean

Inherited from#

HTMLElement.matches

releasePointerCapture()#

releasePointerCapture(pointerId): void;

The releasePointerCapture() method of the previously set for a specific (PointerEvent) pointer.

MDN Reference

Parameters#

ParameterType
pointerIdnumber

Returns#

void

Inherited from#

HTMLElement.releasePointerCapture

removeAttribute()#

removeAttribute(qualifiedName): void;

The Element method removeAttribute() removes the attribute with the specified name from the element.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring

Returns#

void

Inherited from#

HTMLElement.removeAttribute

removeAttributeNS()#

removeAttributeNS(namespace, localName): void;

The removeAttributeNS() method of the If you are working with HTML and you don’t need to specify the requested attribute as being part of a specific namespace, use the Element.removeAttribute() method instead.

MDN Reference

Parameters#

ParameterType
namespacestring
localNamestring

Returns#

void

Inherited from#

HTMLElement.removeAttributeNS

removeAttributeNode()#

removeAttributeNode(attr): Attr;

The removeAttributeNode() method of the Element interface removes the specified Attr node from the element.

MDN Reference

Parameters#

ParameterType
attrAttr

Returns#

Attr

Inherited from#

HTMLElement.removeAttributeNode

requestFullscreen()#

requestFullscreen(options?): Promise<void>;

The Element.requestFullscreen() method issues an asynchronous request to make the element be displayed in fullscreen mode.

MDN Reference

Parameters#

ParameterType
options?FullscreenOptions

Returns#

Promise<void>

Inherited from#

HTMLElement.requestFullscreen

requestPointerLock()#

requestPointerLock(options?): Promise<void>;

The requestPointerLock() method of the Element interface lets you asynchronously ask for the pointer to be locked on the given element.

MDN Reference

Parameters#

ParameterType
options?PointerLockOptions

Returns#

Promise<void>

Inherited from#

HTMLElement.requestPointerLock

scroll()#

Call Signature#

scroll(options?): void;

The scroll() method of the Element interface scrolls the element to a particular set of coordinates inside a given element.

MDN Reference

Parameters#
ParameterType
options?ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scroll

Call Signature#

scroll(x, y): void;
Parameters#
ParameterType
xnumber
ynumber
Returns#

void

Inherited from#
HTMLElement.scroll

scrollBy()#

Call Signature#

scrollBy(options?): void;

The scrollBy() method of the Element interface scrolls an element by the given amount.

MDN Reference

Parameters#
ParameterType
options?ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scrollBy

Call Signature#

scrollBy(x, y): void;
Parameters#
ParameterType
xnumber
ynumber
Returns#

void

Inherited from#
HTMLElement.scrollBy

scrollIntoView()#

scrollIntoView(arg?): void;

The Element interface’s scrollIntoView() method scrolls the element’s ancestor containers such that the element on which scrollIntoView() is called is visible to the user.

MDN Reference

Parameters#

ParameterType
arg?boolean

Returns#

void

Inherited from#

HTMLElement.scrollIntoView

scrollTo()#

Call Signature#

scrollTo(options?): void;

The scrollTo() method of the Element interface scrolls to a particular set of coordinates inside a given element.

MDN Reference

Parameters#
ParameterType
options?ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scrollTo

Call Signature#

scrollTo(x, y): void;
Parameters#
ParameterType
xnumber
ynumber
Returns#

void

Inherited from#
HTMLElement.scrollTo

setAttribute()#

setAttribute(qualifiedName, value): void;

The setAttribute() method of the Element interface sets the value of an attribute on the specified element.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring
valuestring

Returns#

void

Inherited from#

HTMLElement.setAttribute

setAttributeNS()#

setAttributeNS(
namespace,
qualifiedName,
value): void;

setAttributeNS adds a new attribute or changes the value of an attribute with the given namespace and name.

MDN Reference

Parameters#

ParameterType
namespacestring
qualifiedNamestring
valuestring

Returns#

void

Inherited from#

HTMLElement.setAttributeNS

setAttributeNode()#

setAttributeNode(attr): Attr;

The setAttributeNode() method of the Element interface adds a new Attr node to the specified element.

MDN Reference

Parameters#

ParameterType
attrAttr

Returns#

Attr

Inherited from#

HTMLElement.setAttributeNode

setAttributeNodeNS()#

setAttributeNodeNS(attr): Attr;

The setAttributeNodeNS() method of the Element interface adds a new namespaced Attr node to an element.

MDN Reference

Parameters#

ParameterType
attrAttr

Returns#

Attr

Inherited from#

HTMLElement.setAttributeNodeNS

setHTMLUnsafe()#

setHTMLUnsafe(html): void;

The setHTMLUnsafe() method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don’t belong in the context, and then using it to replace the element’s subtree in the DOM.

MDN Reference

Parameters#

ParameterType
htmlstring

Returns#

void

Inherited from#

HTMLElement.setHTMLUnsafe

setPointerCapture()#

setPointerCapture(pointerId): void;

The setPointerCapture() method of the capture target of future pointer events.

MDN Reference

Parameters#

ParameterType
pointerIdnumber

Returns#

void

Inherited from#

HTMLElement.setPointerCapture

toggleAttribute()#

toggleAttribute(qualifiedName, force?): boolean;

The toggleAttribute() method of the present and adding it if it is not present) on the given element.

MDN Reference

Parameters#

ParameterType
qualifiedNamestring
force?boolean

Returns#

boolean

Inherited from#

HTMLElement.toggleAttribute

webkitMatchesSelector()#

webkitMatchesSelector(selectors): boolean;

Parameters#

ParameterType
selectorsstring

Returns#

boolean

Deprecated#

This is a legacy alias of matches.

MDN Reference

Inherited from#

HTMLElement.webkitMatchesSelector

dispatchEvent()#

dispatchEvent(event): boolean;

The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.

MDN Reference

Parameters#

ParameterType
eventEvent

Returns#

boolean

Inherited from#

HTMLElement.dispatchEvent

attachInternals()#

attachInternals(): ElementInternals;

The HTMLElement.attachInternals() method returns an ElementInternals object.

MDN Reference

Returns#

ElementInternals

Inherited from#

HTMLElement.attachInternals

click()#

click(): void;

The HTMLElement.click() method simulates a mouse click on an element.

MDN Reference

Returns#

void

Inherited from#

HTMLElement.click

hidePopover()#

hidePopover(): void;

The hidePopover() method of the HTMLElement interface hides a popover element (i.e., one that has a valid popover attribute) by removing it from the top layer and styling it with display: none.

MDN Reference

Returns#

void

Inherited from#

HTMLElement.hidePopover

showPopover()#

showPopover(): void;

The showPopover() method of the HTMLElement interface shows a Popover_API element (i.e., one that has a valid popover attribute) by adding it to the top layer.

MDN Reference

Returns#

void

Inherited from#

HTMLElement.showPopover

togglePopover()#

togglePopover(options?): boolean;

The togglePopover() method of the HTMLElement interface toggles a Popover_API element (i.e., one that has a valid popover attribute) between the hidden and showing states.

MDN Reference

Parameters#

ParameterType
options?boolean

Returns#

boolean

Inherited from#

HTMLElement.togglePopover

addEventListener()#

Call Signature#

addEventListener<K>(
type,
listener,
options?): void;
Type Parameters#
Type Parameter
K extends keyof HTMLElementEventMap
Parameters#
ParameterType
typeK
listener(this, ev) => any
options?boolean
Returns#

void

Inherited from#
HTMLElement.addEventListener

Call Signature#

addEventListener(
type,
listener,
options?): void;
Parameters#
ParameterType
typestring
listenerEventListenerOrEventListenerObject
options?boolean
Returns#

void

Inherited from#
HTMLElement.addEventListener

removeEventListener()#

Call Signature#

removeEventListener<K>(
type,
listener,
options?): void;
Type Parameters#
Type Parameter
K extends keyof HTMLElementEventMap
Parameters#
ParameterType
typeK
listener(this, ev) => any
options?boolean
Returns#

void

Inherited from#
HTMLElement.removeEventListener

Call Signature#

removeEventListener(
type,
listener,
options?): void;
Parameters#
ParameterType
typestring
listenerEventListenerOrEventListenerObject
options?boolean
Returns#

void

Inherited from#
HTMLElement.removeEventListener

blur()#

blur(): void;

MDN Reference

Returns#

void

Inherited from#

HTMLElement.blur

focus()#

focus(options?): void;

MDN Reference

Parameters#

ParameterType
options?FocusOptions

Returns#

void

Inherited from#

HTMLElement.focus

appendChild()#

appendChild<T>(node): T;

The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node.

MDN Reference

Type Parameters#

Type Parameter
T extends Node

Parameters#

ParameterType
nodeT

Returns#

T

Inherited from#

HTMLElement.appendChild

cloneNode()#

cloneNode(subtree?): Node;

The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called.

MDN Reference

Parameters#

ParameterType
subtree?boolean

Returns#

Node

Inherited from#

HTMLElement.cloneNode

compareDocumentPosition()#

compareDocumentPosition(other): number;

The compareDocumentPosition() method of the Node interface reports the position of its argument node relative to the node on which it is called.

MDN Reference

Parameters#

ParameterType
otherNode

Returns#

number

Inherited from#

HTMLElement.compareDocumentPosition

contains()#

contains(other): boolean;

The contains() method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (Node.childNodes), one of the children’s direct children, and so on.

MDN Reference

Parameters#

ParameterType
otherNode

Returns#

boolean

Inherited from#

HTMLElement.contains

getRootNode()#

getRootNode(options?): Node;

The getRootNode() method of the Node interface returns the context object’s root, which optionally includes the shadow root if it is available.

MDN Reference

Parameters#

ParameterType
options?GetRootNodeOptions

Returns#

Node

Inherited from#

HTMLElement.getRootNode

hasChildNodes()#

hasChildNodes(): boolean;

The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not.

MDN Reference

Returns#

boolean

Inherited from#

HTMLElement.hasChildNodes

insertBefore()#

insertBefore<T>(node, child): T;

The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node.

MDN Reference

Type Parameters#

Type Parameter
T extends Node

Parameters#

ParameterType
nodeT
childNode

Returns#

T

Inherited from#

HTMLElement.insertBefore

isDefaultNamespace()#

isDefaultNamespace(namespace): boolean;

The isDefaultNamespace() method of the Node interface accepts a namespace URI as an argument.

MDN Reference

Parameters#

ParameterType
namespacestring

Returns#

boolean

Inherited from#

HTMLElement.isDefaultNamespace

isEqualNode()#

isEqualNode(otherNode): boolean;

The isEqualNode() method of the Node interface tests whether two nodes are equal.

MDN Reference

Parameters#

ParameterType
otherNodeNode

Returns#

boolean

Inherited from#

HTMLElement.isEqualNode

isSameNode()#

isSameNode(otherNode): boolean;

The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator.

MDN Reference

Parameters#

ParameterType
otherNodeNode

Returns#

boolean

Inherited from#

HTMLElement.isSameNode

lookupNamespaceURI()#

lookupNamespaceURI(prefix): string;

The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not).

MDN Reference

Parameters#

ParameterType
prefixstring

Returns#

string

Inherited from#

HTMLElement.lookupNamespaceURI

lookupPrefix()#

lookupPrefix(namespace): string;

The lookupPrefix() method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and null if not.

MDN Reference

Parameters#

ParameterType
namespacestring

Returns#

string

Inherited from#

HTMLElement.lookupPrefix

normalize()#

normalize(): void;

The normalize() method of the Node interface puts the specified node and all of its sub-tree into a normalized form.

MDN Reference

Returns#

void

Inherited from#

HTMLElement.normalize

removeChild()#

removeChild<T>(child): T;

The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node.

MDN Reference

Type Parameters#

Type Parameter
T extends Node

Parameters#

ParameterType
childT

Returns#

T

Inherited from#

HTMLElement.removeChild

replaceChild()#

replaceChild<T>(node, child): T;

The replaceChild() method of the Node interface replaces a child node within the given (parent) node.

MDN Reference

Type Parameters#

Type Parameter
T extends Node

Parameters#

ParameterType
nodeNode
childT

Returns#

T

Inherited from#

HTMLElement.replaceChild

append()#

append(...nodes): void;

Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.append

prepend()#

prepend(...nodes): void;

Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.prepend

querySelector()#

Call Signature#

querySelector<K>(selectors): HTMLElementTagNameMap[K];

Returns the first element that is a descendant of node that matches selectors.

MDN Reference

Type Parameters#
Type Parameter
K extends keyof HTMLElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

HTMLElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

querySelector<K>(selectors): SVGElementTagNameMap[K];
Type Parameters#
Type Parameter
K extends keyof SVGElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

SVGElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

querySelector<K>(selectors): MathMLElementTagNameMap[K];
Type Parameters#
Type Parameter
K extends keyof MathMLElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

MathMLElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

querySelector<K>(selectors): HTMLElementDeprecatedTagNameMap[K];
Type Parameters#
Type Parameter
K extends keyof HTMLElementDeprecatedTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

HTMLElementDeprecatedTagNameMap[K]

Deprecated#
Inherited from#
HTMLElement.querySelector

Call Signature#

querySelector<E>(selectors): E;
Type Parameters#
Type ParameterDefault type
E extends ElementElement
Parameters#
ParameterType
selectorsstring
Returns#

E

Inherited from#
HTMLElement.querySelector

querySelectorAll()#

Call Signature#

querySelectorAll<K>(selectors): NodeListOf<HTMLElementTagNameMap[K]>;

Returns all element descendants of node that match selectors.

MDN Reference

Type Parameters#
Type Parameter
K extends keyof HTMLElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

NodeListOf<HTMLElementTagNameMap[K]>

Inherited from#
HTMLElement.querySelectorAll

Call Signature#

querySelectorAll<K>(selectors): NodeListOf<SVGElementTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof SVGElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

NodeListOf<SVGElementTagNameMap[K]>

Inherited from#
HTMLElement.querySelectorAll

Call Signature#

querySelectorAll<K>(selectors): NodeListOf<MathMLElementTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof MathMLElementTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

NodeListOf<MathMLElementTagNameMap[K]>

Inherited from#
HTMLElement.querySelectorAll

Call Signature#

querySelectorAll<K>(selectors): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
Type Parameters#
Type Parameter
K extends keyof HTMLElementDeprecatedTagNameMap
Parameters#
ParameterType
selectorsK
Returns#

NodeListOf<HTMLElementDeprecatedTagNameMap[K]>

Deprecated#
Inherited from#
HTMLElement.querySelectorAll

Call Signature#

querySelectorAll<E>(selectors): NodeListOf<E>;
Type Parameters#
Type ParameterDefault type
E extends ElementElement
Parameters#
ParameterType
selectorsstring
Returns#

NodeListOf<E>

Inherited from#
HTMLElement.querySelectorAll

replaceChildren()#

replaceChildren(...nodes): void;

Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.

Throws a “HierarchyRequestError” DOMException if the constraints of the node tree are violated.

MDN Reference

Parameters#

ParameterType
nodes(string

Returns#

void

Inherited from#

HTMLElement.replaceChildren

Properties#

PropertyModifierTypeDescriptionInherited from
ariaActiveDescendantElementpublicElementMDN ReferenceHTMLElement.ariaActiveDescendantElement
ariaAtomicpublicstringMDN ReferenceHTMLElement.ariaAtomic
ariaAutoCompletepublicstringMDN ReferenceHTMLElement.ariaAutoComplete
ariaBrailleLabelpublicstringMDN ReferenceHTMLElement.ariaBrailleLabel
ariaBrailleRoleDescriptionpublicstringMDN ReferenceHTMLElement.ariaBrailleRoleDescription
ariaBusypublicstringMDN ReferenceHTMLElement.ariaBusy
ariaCheckedpublicstringMDN ReferenceHTMLElement.ariaChecked
ariaColCountpublicstringMDN ReferenceHTMLElement.ariaColCount
ariaColIndexpublicstringMDN ReferenceHTMLElement.ariaColIndex
ariaColIndexTextpublicstringMDN ReferenceHTMLElement.ariaColIndexText
ariaColSpanpublicstringMDN ReferenceHTMLElement.ariaColSpan
ariaControlsElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaControlsElements
ariaCurrentpublicstringMDN ReferenceHTMLElement.ariaCurrent
ariaDescribedByElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaDescribedByElements
ariaDescriptionpublicstringMDN ReferenceHTMLElement.ariaDescription
ariaDetailsElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaDetailsElements
ariaDisabledpublicstringMDN ReferenceHTMLElement.ariaDisabled
ariaErrorMessageElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaErrorMessageElements
ariaExpandedpublicstringMDN ReferenceHTMLElement.ariaExpanded
ariaFlowToElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaFlowToElements
ariaHasPopuppublicstringMDN ReferenceHTMLElement.ariaHasPopup
ariaHiddenpublicstringMDN ReferenceHTMLElement.ariaHidden
ariaInvalidpublicstringMDN ReferenceHTMLElement.ariaInvalid
ariaKeyShortcutspublicstringMDN ReferenceHTMLElement.ariaKeyShortcuts
ariaLabelpublicstringMDN ReferenceHTMLElement.ariaLabel
ariaLabelledByElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaLabelledByElements
ariaLevelpublicstringMDN ReferenceHTMLElement.ariaLevel
ariaLivepublicstringMDN ReferenceHTMLElement.ariaLive
ariaModalpublicstringMDN ReferenceHTMLElement.ariaModal
ariaMultiLinepublicstringMDN ReferenceHTMLElement.ariaMultiLine
ariaMultiSelectablepublicstringMDN ReferenceHTMLElement.ariaMultiSelectable
ariaOrientationpublicstringMDN ReferenceHTMLElement.ariaOrientation
ariaOwnsElementspublicreadonly Element[]MDN ReferenceHTMLElement.ariaOwnsElements
ariaPlaceholderpublicstringMDN ReferenceHTMLElement.ariaPlaceholder
ariaPosInSetpublicstringMDN ReferenceHTMLElement.ariaPosInSet
ariaPressedpublicstringMDN ReferenceHTMLElement.ariaPressed
ariaReadOnlypublicstringMDN ReferenceHTMLElement.ariaReadOnly
ariaRelevantpublicstringMDN ReferenceHTMLElement.ariaRelevant
ariaRequiredpublicstringMDN ReferenceHTMLElement.ariaRequired
ariaRoleDescriptionpublicstringMDN ReferenceHTMLElement.ariaRoleDescription
ariaRowCountpublicstringMDN ReferenceHTMLElement.ariaRowCount
ariaRowIndexpublicstringMDN ReferenceHTMLElement.ariaRowIndex
ariaRowIndexTextpublicstringMDN ReferenceHTMLElement.ariaRowIndexText
ariaRowSpanpublicstringMDN ReferenceHTMLElement.ariaRowSpan
ariaSelectedpublicstringMDN ReferenceHTMLElement.ariaSelected
ariaSetSizepublicstringMDN ReferenceHTMLElement.ariaSetSize
ariaSortpublicstringMDN ReferenceHTMLElement.ariaSort
ariaValueMaxpublicstringMDN ReferenceHTMLElement.ariaValueMax
ariaValueMinpublicstringMDN ReferenceHTMLElement.ariaValueMin
ariaValueNowpublicstringMDN ReferenceHTMLElement.ariaValueNow
ariaValueTextpublicstringMDN ReferenceHTMLElement.ariaValueText
rolepublicstringMDN ReferenceHTMLElement.role
attributesreadonlyNamedNodeMapThe Element.attributes property returns a live collection of all attribute nodes registered to the specified node. MDN ReferenceHTMLElement.attributes
classNamepublicstringThe className property of the of the specified element. MDN ReferenceHTMLElement.className
clientHeightreadonlynumberThe clientHeight read-only property of the Element interface is zero for elements with no CSS or inline layout boxes; otherwise, it’s the inner height of an element in pixels. MDN ReferenceHTMLElement.clientHeight
clientLeftreadonlynumberThe clientLeft read-only property of the Element interface returns the width of the left border of an element in pixels. MDN ReferenceHTMLElement.clientLeft
clientTopreadonlynumberThe clientTop read-only property of the Element interface returns the width of the top border of an element in pixels. MDN ReferenceHTMLElement.clientTop
clientWidthreadonlynumberThe clientWidth read-only property of the Element interface is zero for inline elements and elements with no CSS; otherwise, it’s the inner width of an element in pixels. MDN ReferenceHTMLElement.clientWidth
currentCSSZoomreadonlynumberThe currentCSSZoom read-only property of the Element interface provides the ‘effective’ CSS zoom of an element, taking into account the zoom applied to the element and all its parent elements. MDN ReferenceHTMLElement.currentCSSZoom
idpublicstringThe id property of the Element interface represents the element’s identifier, reflecting the id global attribute. MDN ReferenceHTMLElement.id
innerHTMLpublicstringThe innerHTML property of the Element interface gets or sets the HTML or XML markup contained within the element. MDN ReferenceHTMLElement.innerHTML
localNamereadonlystringThe Element.localName read-only property returns the local part of the qualified name of an element. MDN ReferenceHTMLElement.localName
namespaceURIreadonlystringThe Element.namespaceURI read-only property returns the namespace URI of the element, or null if the element is not in a namespace. MDN ReferenceHTMLElement.namespaceURI
onfullscreenchangepublic(this, ev) => anyMDN ReferenceHTMLElement.onfullscreenchange
onfullscreenerrorpublic(this, ev) => anyMDN ReferenceHTMLElement.onfullscreenerror
outerHTMLpublicstringThe outerHTML attribute of the Element DOM interface gets the serialized HTML fragment describing the element including its descendants. MDN ReferenceHTMLElement.outerHTML
ownerDocumentreadonlyDocumentThe read-only ownerDocument property of the Node interface returns the top-level document object of the node. MDN ReferenceHTMLElement.ownerDocument
prefixreadonlystringThe Element.prefix read-only property returns the namespace prefix of the specified element, or null if no prefix is specified. MDN ReferenceHTMLElement.prefix
scrollHeightreadonlynumberThe scrollHeight read-only property of the Element interface is a measurement of the height of an element’s content, including content not visible on the screen due to overflow. MDN ReferenceHTMLElement.scrollHeight
scrollLeftpublicnumberThe scrollLeft property of the Element interface gets or sets the number of pixels by which an element’s content is scrolled from its left edge. MDN ReferenceHTMLElement.scrollLeft
scrollToppublicnumberThe scrollTop property of the Element interface gets or sets the number of pixels by which an element’s content is scrolled from its top edge. MDN ReferenceHTMLElement.scrollTop
scrollWidthreadonlynumberThe scrollWidth read-only property of the Element interface is a measurement of the width of an element’s content, including content not visible on the screen due to overflow. MDN ReferenceHTMLElement.scrollWidth
shadowRootreadonlyShadowRootThe Element.shadowRoot read-only property represents the shadow root hosted by the element. MDN ReferenceHTMLElement.shadowRoot
slotpublicstringThe slot property of the Element interface returns the name of the shadow DOM slot the element is inserted in. MDN ReferenceHTMLElement.slot
tagNamereadonlystringThe tagName read-only property of the Element interface returns the tag name of the element on which it’s called. MDN ReferenceHTMLElement.tagName
attributeStyleMapreadonlyStylePropertyMapMDN ReferenceHTMLElement.attributeStyleMap
contentEditablepublicstringMDN ReferenceHTMLElement.contentEditable
enterKeyHintpublicstringMDN ReferenceHTMLElement.enterKeyHint
inputModepublicstringMDN ReferenceHTMLElement.inputMode
isContentEditablereadonlybooleanMDN ReferenceHTMLElement.isContentEditable
onabortpublic(this, ev) => anyMDN ReferenceHTMLElement.onabort
onanimationcancelpublic(this, ev) => anyMDN ReferenceHTMLElement.onanimationcancel
onanimationendpublic(this, ev) => anyMDN ReferenceHTMLElement.onanimationend
onanimationiterationpublic(this, ev) => anyMDN ReferenceHTMLElement.onanimationiteration
onanimationstartpublic(this, ev) => anyMDN ReferenceHTMLElement.onanimationstart
onauxclickpublic(this, ev) => anyMDN ReferenceHTMLElement.onauxclick
onbeforeinputpublic(this, ev) => anyMDN ReferenceHTMLElement.onbeforeinput
onbeforematchpublic(this, ev) => anyMDN ReferenceHTMLElement.onbeforematch
onbeforetogglepublic(this, ev) => anyMDN ReferenceHTMLElement.onbeforetoggle
onblurpublic(this, ev) => anyMDN ReferenceHTMLElement.onblur
oncancelpublic(this, ev) => anyMDN ReferenceHTMLElement.oncancel
oncanplaypublic(this, ev) => anyMDN ReferenceHTMLElement.oncanplay
oncanplaythroughpublic(this, ev) => anyMDN ReferenceHTMLElement.oncanplaythrough
onchangepublic(this, ev) => anyMDN ReferenceHTMLElement.onchange
onclickpublic(this, ev) => anyMDN ReferenceHTMLElement.onclick
onclosepublic(this, ev) => anyMDN ReferenceHTMLElement.onclose
oncontextlostpublic(this, ev) => anyMDN ReferenceHTMLElement.oncontextlost
oncontextmenupublic(this, ev) => anyMDN ReferenceHTMLElement.oncontextmenu
oncontextrestoredpublic(this, ev) => anyMDN ReferenceHTMLElement.oncontextrestored
oncopypublic(this, ev) => anyMDN ReferenceHTMLElement.oncopy
oncuechangepublic(this, ev) => anyMDN ReferenceHTMLElement.oncuechange
oncutpublic(this, ev) => anyMDN ReferenceHTMLElement.oncut
ondblclickpublic(this, ev) => anyMDN ReferenceHTMLElement.ondblclick
ondragpublic(this, ev) => anyMDN ReferenceHTMLElement.ondrag
ondragendpublic(this, ev) => anyMDN ReferenceHTMLElement.ondragend
ondragenterpublic(this, ev) => anyMDN ReferenceHTMLElement.ondragenter
ondragleavepublic(this, ev) => anyMDN ReferenceHTMLElement.ondragleave
ondragoverpublic(this, ev) => anyMDN ReferenceHTMLElement.ondragover
ondragstartpublic(this, ev) => anyMDN ReferenceHTMLElement.ondragstart
ondroppublic(this, ev) => anyMDN ReferenceHTMLElement.ondrop
ondurationchangepublic(this, ev) => anyMDN ReferenceHTMLElement.ondurationchange
onemptiedpublic(this, ev) => anyMDN ReferenceHTMLElement.onemptied
onendedpublic(this, ev) => anyMDN ReferenceHTMLElement.onended
onerrorpublicOnErrorEventHandlerNonNullMDN ReferenceHTMLElement.onerror
onfocuspublic(this, ev) => anyMDN ReferenceHTMLElement.onfocus
onformdatapublic(this, ev) => anyMDN ReferenceHTMLElement.onformdata
ongotpointercapturepublic(this, ev) => anyMDN ReferenceHTMLElement.ongotpointercapture
oninputpublic(this, ev) => anyMDN ReferenceHTMLElement.oninput
oninvalidpublic(this, ev) => anyMDN ReferenceHTMLElement.oninvalid
onkeydownpublic(this, ev) => anyMDN ReferenceHTMLElement.onkeydown
onkeypresspublic(this, ev) => anyDeprecated MDN ReferenceHTMLElement.onkeypress
onkeyuppublic(this, ev) => anyMDN ReferenceHTMLElement.onkeyup
onloadpublic(this, ev) => anyMDN ReferenceHTMLElement.onload
onloadeddatapublic(this, ev) => anyMDN ReferenceHTMLElement.onloadeddata
onloadedmetadatapublic(this, ev) => anyMDN ReferenceHTMLElement.onloadedmetadata
onloadstartpublic(this, ev) => anyMDN ReferenceHTMLElement.onloadstart
onlostpointercapturepublic(this, ev) => anyMDN ReferenceHTMLElement.onlostpointercapture
onmousedownpublic(this, ev) => anyMDN ReferenceHTMLElement.onmousedown
onmouseenterpublic(this, ev) => anyMDN ReferenceHTMLElement.onmouseenter
onmouseleavepublic(this, ev) => anyMDN ReferenceHTMLElement.onmouseleave
onmousemovepublic(this, ev) => anyMDN ReferenceHTMLElement.onmousemove
onmouseoutpublic(this, ev) => anyMDN ReferenceHTMLElement.onmouseout
onmouseoverpublic(this, ev) => anyMDN ReferenceHTMLElement.onmouseover
onmouseuppublic(this, ev) => anyMDN ReferenceHTMLElement.onmouseup
onpastepublic(this, ev) => anyMDN ReferenceHTMLElement.onpaste
onpausepublic(this, ev) => anyMDN ReferenceHTMLElement.onpause
onplaypublic(this, ev) => anyMDN ReferenceHTMLElement.onplay
onplayingpublic(this, ev) => anyMDN ReferenceHTMLElement.onplaying
onpointercancelpublic(this, ev) => anyMDN ReferenceHTMLElement.onpointercancel
onpointerdownpublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerdown
onpointerenterpublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerenter
onpointerleavepublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerleave
onpointermovepublic(this, ev) => anyMDN ReferenceHTMLElement.onpointermove
onpointeroutpublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerout
onpointeroverpublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerover
onpointerrawupdatepublic(this, ev) => anyAvailable only in secure contexts. MDN ReferenceHTMLElement.onpointerrawupdate
onpointeruppublic(this, ev) => anyMDN ReferenceHTMLElement.onpointerup
onprogresspublic(this, ev) => anyMDN ReferenceHTMLElement.onprogress
onratechangepublic(this, ev) => anyMDN ReferenceHTMLElement.onratechange
onresetpublic(this, ev) => anyMDN ReferenceHTMLElement.onreset
onresizepublic(this, ev) => anyMDN ReferenceHTMLElement.onresize
onscrollpublic(this, ev) => anyMDN ReferenceHTMLElement.onscroll
onscrollendpublic(this, ev) => anyMDN ReferenceHTMLElement.onscrollend
onsecuritypolicyviolationpublic(this, ev) => anyMDN ReferenceHTMLElement.onsecuritypolicyviolation
onseekedpublic(this, ev) => anyMDN ReferenceHTMLElement.onseeked
onseekingpublic(this, ev) => anyMDN ReferenceHTMLElement.onseeking
onselectpublic(this, ev) => anyMDN ReferenceHTMLElement.onselect
onselectionchangepublic(this, ev) => anyMDN ReferenceHTMLElement.onselectionchange
onselectstartpublic(this, ev) => anyMDN ReferenceHTMLElement.onselectstart
onslotchangepublic(this, ev) => anyMDN ReferenceHTMLElement.onslotchange
onstalledpublic(this, ev) => anyMDN ReferenceHTMLElement.onstalled
onsubmitpublic(this, ev) => anyMDN ReferenceHTMLElement.onsubmit
onsuspendpublic(this, ev) => anyMDN ReferenceHTMLElement.onsuspend
ontimeupdatepublic(this, ev) => anyMDN ReferenceHTMLElement.ontimeupdate
ontogglepublic(this, ev) => anyMDN ReferenceHTMLElement.ontoggle
ontouchcancel?public(this, ev) => anyMDN ReferenceHTMLElement.ontouchcancel
ontouchend?public(this, ev) => anyMDN ReferenceHTMLElement.ontouchend
ontouchmove?public(this, ev) => anyMDN ReferenceHTMLElement.ontouchmove
ontouchstart?public(this, ev) => anyMDN ReferenceHTMLElement.ontouchstart
ontransitioncancelpublic(this, ev) => anyMDN ReferenceHTMLElement.ontransitioncancel
ontransitionendpublic(this, ev) => anyMDN ReferenceHTMLElement.ontransitionend
ontransitionrunpublic(this, ev) => anyMDN ReferenceHTMLElement.ontransitionrun
ontransitionstartpublic(this, ev) => anyMDN ReferenceHTMLElement.ontransitionstart
onvolumechangepublic(this, ev) => anyMDN ReferenceHTMLElement.onvolumechange
onwaitingpublic(this, ev) => anyMDN ReferenceHTMLElement.onwaiting
onwebkitanimationendpublic(this, ev) => anyDeprecated This is a legacy alias of onanimationend. MDN ReferenceHTMLElement.onwebkitanimationend
onwebkitanimationiterationpublic(this, ev) => anyDeprecated This is a legacy alias of onanimationiteration. MDN ReferenceHTMLElement.onwebkitanimationiteration
onwebkitanimationstartpublic(this, ev) => anyDeprecated This is a legacy alias of onanimationstart. MDN ReferenceHTMLElement.onwebkitanimationstart
onwebkittransitionendpublic(this, ev) => anyDeprecated This is a legacy alias of ontransitionend. MDN ReferenceHTMLElement.onwebkittransitionend
onwheelpublic(this, ev) => anyMDN ReferenceHTMLElement.onwheel
accessKeypublicstringThe HTMLElement.accessKey property sets the keystroke which a user can press to jump to a given element. MDN ReferenceHTMLElement.accessKey
accessKeyLabelreadonlystringThe HTMLElement.accessKeyLabel read-only property returns a string containing the element’s browser-assigned access key (if any); otherwise it returns an empty string. MDN ReferenceHTMLElement.accessKeyLabel
autocapitalizepublicstringThe autocapitalize property of the HTMLElement interface represents the element’s capitalization behavior for user input. MDN ReferenceHTMLElement.autocapitalize
autocorrectpublicbooleanThe autocorrect property of the HTMLElement interface controls whether or not autocorrection of editable text is enabled for spelling and/or punctuation errors. MDN ReferenceHTMLElement.autocorrect
dirpublicstringThe HTMLElement.dir property indicates the text writing directionality of the content of the current element. MDN ReferenceHTMLElement.dir
draggablepublicbooleanThe draggable property of the HTMLElement interface gets and sets a Boolean primitive indicating if the element is draggable. MDN ReferenceHTMLElement.draggable
hiddenpublicbooleanThe HTMLElement property hidden reflects the value of the element’s hidden attribute. MDN ReferenceHTMLElement.hidden
inertpublicbooleanThe HTMLElement property inert reflects the value of the element’s inert attribute. MDN ReferenceHTMLElement.inert
innerTextpublicstringThe innerText property of the HTMLElement interface represents the rendered text content of a node and its descendants. MDN ReferenceHTMLElement.innerText
langpublicstringThe lang property of the HTMLElement interface indicates the base language of an element’s attribute values and text content, in the form of a MISSING: RFC(5646, ‘BCP 47 language identifier tag’)]. MDN ReferenceHTMLElement.lang
offsetHeightreadonlynumberThe offsetHeight read-only property of the HTMLElement interface returns the height of an element, including vertical padding and borders, as an integer. MDN ReferenceHTMLElement.offsetHeight
offsetLeftreadonlynumberThe offsetLeft read-only property of the HTMLElement interface returns the number of pixels that the upper left corner of the current element is offset to the left within the HTMLElement.offsetParent node. MDN ReferenceHTMLElement.offsetLeft
offsetParentreadonlyElementThe HTMLElement.offsetParent read-only property returns a reference to the element which is the closest (nearest in the containment hierarchy) positioned ancestor element. MDN ReferenceHTMLElement.offsetParent
offsetTopreadonlynumberThe offsetTop read-only property of the HTMLElement interface returns the distance from the outer border of the current element (including its margin) to the top padding edge of the HTMLelement.offsetParent, the closest positioned ancestor element. MDN ReferenceHTMLElement.offsetTop
offsetWidthreadonlynumberThe offsetWidth read-only property of the HTMLElement interface returns the layout width of an element as an integer. MDN ReferenceHTMLElement.offsetWidth
outerTextpublicstringThe outerText property of the HTMLElement interface returns the same value as HTMLElement.innerText. MDN ReferenceHTMLElement.outerText
popoverpublicstringThe popover property of the HTMLElement interface gets and sets an element’s popover state via JavaScript ('auto', 'hint', or 'manual'), and can be used for feature detection. MDN ReferenceHTMLElement.popover
spellcheckpublicbooleanThe spellcheck property of the HTMLElement interface represents a boolean value that controls the spell-checking hint. MDN ReferenceHTMLElement.spellcheck
titlepublicstringThe HTMLElement.title property represents the title of the element: the text usually displayed in a ‘tooltip’ popup when the mouse is over the node. MDN ReferenceHTMLElement.title
translatepublicbooleanThe translate property of the HTMLElement interface indicates whether an element’s attribute values and the values of its Text node children are to be translated when the page is localized, or whether to leave them unchanged. MDN ReferenceHTMLElement.translate
writingSuggestionspublicstringThe writingSuggestions property of the HTMLElement interface is a string indicating if browser-provided writing suggestions should be enabled under the scope of the element or not. MDN ReferenceHTMLElement.writingSuggestions
autofocuspublicbooleanMDN ReferenceHTMLElement.autofocus
datasetreadonlyDOMStringMapMDN ReferenceHTMLElement.dataset
nonce?publicstringMDN ReferenceHTMLElement.nonce
tabIndexpublicnumberMDN ReferenceHTMLElement.tabIndex
baseURIreadonlystringThe read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node. MDN ReferenceHTMLElement.baseURI
childNodesreadonlyNodeListOf<ChildNode>The read-only childNodes property of the Node interface returns a live the first child node is assigned index 0. MDN ReferenceHTMLElement.childNodes
firstChildreadonlyChildNodeThe read-only firstChild property of the Node interface returns the node’s first child in the tree, or null if the node has no children. MDN ReferenceHTMLElement.firstChild
isConnectedreadonlybooleanThe read-only isConnected property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object. MDN ReferenceHTMLElement.isConnected
lastChildreadonlyChildNodeThe read-only lastChild property of the Node interface returns the last child of the node, or null if there are no child nodes. MDN ReferenceHTMLElement.lastChild
nextSiblingreadonlyChildNodeThe read-only nextSibling property of the Node interface returns the node immediately following the specified one in their parent’s Node.childNodes, or returns null if the specified node is the last child in the parent element. MDN ReferenceHTMLElement.nextSibling
nodeNamereadonlystringThe read-only nodeName property of Node returns the name of the current node as a string. MDN ReferenceHTMLElement.nodeName
nodeTypereadonlynumberThe read-only nodeType property of a Node interface is an integer that identifies what the node is. MDN ReferenceHTMLElement.nodeType
nodeValuepublicstringThe nodeValue property of the Node interface returns or sets the value of the current node. MDN ReferenceHTMLElement.nodeValue
parentElementreadonlyHTMLElementThe read-only parentElement property of Node interface returns the DOM node’s parent Element, or null if the node either has no parent, or its parent isn’t a DOM Element. MDN ReferenceHTMLElement.parentElement
parentNodereadonlyParentNodeThe read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree. MDN ReferenceHTMLElement.parentNode
previousSiblingreadonlyChildNodeThe read-only previousSibling property of the Node interface returns the node immediately preceding the specified one in its parent’s or null if the specified node is the first in that list. MDN ReferenceHTMLElement.previousSibling
ELEMENT_NODEreadonly1node is an element.HTMLElement.ELEMENT_NODE
ATTRIBUTE_NODEreadonly2-HTMLElement.ATTRIBUTE_NODE
TEXT_NODEreadonly3node is a Text node.HTMLElement.TEXT_NODE
CDATA_SECTION_NODEreadonly4node is a CDATASection node.HTMLElement.CDATA_SECTION_NODE
ENTITY_REFERENCE_NODEreadonly5-HTMLElement.ENTITY_REFERENCE_NODE
ENTITY_NODEreadonly6-HTMLElement.ENTITY_NODE
PROCESSING_INSTRUCTION_NODEreadonly7node is a ProcessingInstruction node.HTMLElement.PROCESSING_INSTRUCTION_NODE
COMMENT_NODEreadonly8node is a Comment node.HTMLElement.COMMENT_NODE
DOCUMENT_NODEreadonly9node is a document.HTMLElement.DOCUMENT_NODE
DOCUMENT_TYPE_NODEreadonly10node is a doctype.HTMLElement.DOCUMENT_TYPE_NODE
DOCUMENT_FRAGMENT_NODEreadonly11node is a DocumentFragment node.HTMLElement.DOCUMENT_FRAGMENT_NODE
NOTATION_NODEreadonly12-HTMLElement.NOTATION_NODE
DOCUMENT_POSITION_DISCONNECTEDreadonly1Set when node and other are not in the same tree.HTMLElement.DOCUMENT_POSITION_DISCONNECTED
DOCUMENT_POSITION_PRECEDINGreadonly2Set when other is preceding node.HTMLElement.DOCUMENT_POSITION_PRECEDING
DOCUMENT_POSITION_FOLLOWINGreadonly4Set when other is following node.HTMLElement.DOCUMENT_POSITION_FOLLOWING
DOCUMENT_POSITION_CONTAINSreadonly8Set when other is an ancestor of node.HTMLElement.DOCUMENT_POSITION_CONTAINS
DOCUMENT_POSITION_CONTAINED_BYreadonly16Set when other is a descendant of node.HTMLElement.DOCUMENT_POSITION_CONTAINED_BY
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFICreadonly32-HTMLElement.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
nextElementSiblingreadonlyElementReturns the first following sibling that is an element, and null otherwise. MDN ReferenceHTMLElement.nextElementSibling
previousElementSiblingreadonlyElementReturns the first preceding sibling that is an element, and null otherwise. MDN ReferenceHTMLElement.previousElementSibling
childElementCountreadonlynumberMDN ReferenceHTMLElement.childElementCount
childrenreadonlyHTMLCollectionReturns the child elements. MDN ReferenceHTMLElement.children
firstElementChildreadonlyElementReturns the first child that is an element, and null otherwise. MDN ReferenceHTMLElement.firstElementChild
lastElementChildreadonlyElementReturns the last child that is an element, and null otherwise. MDN ReferenceHTMLElement.lastElementChild
assignedSlotreadonlyHTMLSlotElementMDN ReferenceHTMLElement.assignedSlot