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#
Parameter Type
value string
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#
Parameter Type
value string
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#
Parameter Type
value string
Returns#

void

Inherited from#

HTMLElement.textContent

style#

Get Signature#

get style(): CSSStyleDeclaration;

MDN Reference

Returns#

CSSStyleDeclaration

Set Signature#

set style(cssText): void;
Parameters#
Parameter Type
cssText string
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#

Parameter Type
keyframes Keyframe[]
options? number

Returns#

Animation

Inherited from#

HTMLElement.animate

getAnimations()#

getAnimations(options?): Animation[];

MDN Reference

Parameters#

Parameter Type
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#

Parameter Type
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#

Parameter Type
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#

Parameter Type
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#

Parameter Type
init ShadowRootInit

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#

Parameter Type
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#
Parameter Type
selector K
Returns#

HTMLElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

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

SVGElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

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

MathMLElementTagNameMap[K]

Inherited from#
HTMLElement.closest

Call Signature#

closest<E>(selectors): E;
Type Parameters#
Type Parameter Default type
E extends Element Element
Parameters#
Parameter Type
selectors string
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#

Parameter Type
qualifiedName string

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#

Parameter Type
namespace string
localName string

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#

Parameter Type
qualifiedName string

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#

Parameter Type
namespace string
localName string

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#

Parameter Type
classNames string

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#
Parameter Type
qualifiedName K
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#
Parameter Type
qualifiedName K
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#
Parameter Type
qualifiedName K
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#
Parameter Type
qualifiedName K
Returns#

HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>

Deprecated#
Inherited from#
HTMLElement.getElementsByTagName

Call Signature#

getElementsByTagName(qualifiedName): HTMLCollectionOf<Element>;
Parameters#
Parameter Type
qualifiedName string
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#
Parameter Type
namespaceURI "http://www.w3.org/1999/xhtml"
localName string
Returns#

HTMLCollectionOf<HTMLElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

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

HTMLCollectionOf<SVGElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

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

HTMLCollectionOf<MathMLElement>

Inherited from#
HTMLElement.getElementsByTagNameNS

Call Signature#

getElementsByTagNameNS(namespace, localName): HTMLCollectionOf<Element>;
Parameters#
Parameter Type
namespace string
localName string
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#

Parameter Type
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#

Parameter Type
qualifiedName string

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#

Parameter Type
namespace string
localName string

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#

Parameter Type
pointerId number

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#

Parameter Type
where InsertPosition
element Element

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#

Parameter Type
position InsertPosition
string string

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#

Parameter Type
where InsertPosition
data string

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#

Parameter Type
selectors string

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#

Parameter Type
pointerId number

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#

Parameter Type
qualifiedName string

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#

Parameter Type
namespace string
localName string

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#

Parameter Type
attr Attr

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#

Parameter Type
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#

Parameter Type
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#
Parameter Type
options? ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scroll

Call Signature#

scroll(x, y): void;
Parameters#
Parameter Type
x number
y number
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#
Parameter Type
options? ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scrollBy

Call Signature#

scrollBy(x, y): void;
Parameters#
Parameter Type
x number
y number
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#

Parameter Type
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#
Parameter Type
options? ScrollToOptions
Returns#

void

Inherited from#
HTMLElement.scrollTo

Call Signature#

scrollTo(x, y): void;
Parameters#
Parameter Type
x number
y number
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#

Parameter Type
qualifiedName string
value string

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#

Parameter Type
namespace string
qualifiedName string
value string

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#

Parameter Type
attr Attr

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#

Parameter Type
attr Attr

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#

Parameter Type
html string

Returns#

void

Inherited from#

HTMLElement.setHTMLUnsafe

setPointerCapture()#

setPointerCapture(pointerId): void;

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

MDN Reference

Parameters#

Parameter Type
pointerId number

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#

Parameter Type
qualifiedName string
force? boolean

Returns#

boolean

Inherited from#

HTMLElement.toggleAttribute

webkitMatchesSelector()#

webkitMatchesSelector(selectors): boolean;

Parameters#

Parameter Type
selectors string

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#

Parameter Type
event Event

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#

Parameter Type
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#
Parameter Type
type K
listener (this, ev) => any
options? boolean
Returns#

void

Inherited from#
HTMLElement.addEventListener

Call Signature#

addEventListener(
type,
listener,
options?): void;
Parameters#
Parameter Type
type string
listener EventListenerOrEventListenerObject
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#
Parameter Type
type K
listener (this, ev) => any
options? boolean
Returns#

void

Inherited from#
HTMLElement.removeEventListener

Call Signature#

removeEventListener(
type,
listener,
options?): void;
Parameters#
Parameter Type
type string
listener EventListenerOrEventListenerObject
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#

Parameter Type
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#

Parameter Type
node T

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#

Parameter Type
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#

Parameter Type
other Node

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#

Parameter Type
other Node

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#

Parameter Type
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#

Parameter Type
node T
child Node

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#

Parameter Type
namespace string

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#

Parameter Type
otherNode Node

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#

Parameter Type
otherNode Node

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#

Parameter Type
prefix string

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#

Parameter Type
namespace string

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#

Parameter Type
child T

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#

Parameter Type
node Node
child T

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#

Parameter Type
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#

Parameter Type
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#
Parameter Type
selectors K
Returns#

HTMLElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

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

SVGElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

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

MathMLElementTagNameMap[K]

Inherited from#
HTMLElement.querySelector

Call Signature#

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

HTMLElementDeprecatedTagNameMap[K]

Deprecated#
Inherited from#
HTMLElement.querySelector

Call Signature#

querySelector<E>(selectors): E;
Type Parameters#
Type Parameter Default type
E extends Element Element
Parameters#
Parameter Type
selectors string
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#
Parameter Type
selectors K
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#
Parameter Type
selectors K
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#
Parameter Type
selectors K
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#
Parameter Type
selectors K
Returns#

NodeListOf<HTMLElementDeprecatedTagNameMap[K]>

Deprecated#
Inherited from#
HTMLElement.querySelectorAll

Call Signature#

querySelectorAll<E>(selectors): NodeListOf<E>;
Type Parameters#
Type Parameter Default type
E extends Element Element
Parameters#
Parameter Type
selectors string
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#

Parameter Type
nodes (string

Returns#

void

Inherited from#

HTMLElement.replaceChildren

Properties#

Property Modifier Type Description Inherited from
ariaActiveDescendantElement public Element MDN Reference HTMLElement.ariaActiveDescendantElement
ariaAtomic public string MDN Reference HTMLElement.ariaAtomic
ariaAutoComplete public string MDN Reference HTMLElement.ariaAutoComplete
ariaBrailleLabel public string MDN Reference HTMLElement.ariaBrailleLabel
ariaBrailleRoleDescription public string MDN Reference HTMLElement.ariaBrailleRoleDescription
ariaBusy public string MDN Reference HTMLElement.ariaBusy
ariaChecked public string MDN Reference HTMLElement.ariaChecked
ariaColCount public string MDN Reference HTMLElement.ariaColCount
ariaColIndex public string MDN Reference HTMLElement.ariaColIndex
ariaColIndexText public string MDN Reference HTMLElement.ariaColIndexText
ariaColSpan public string MDN Reference HTMLElement.ariaColSpan
ariaControlsElements public readonly Element[] MDN Reference HTMLElement.ariaControlsElements
ariaCurrent public string MDN Reference HTMLElement.ariaCurrent
ariaDescribedByElements public readonly Element[] MDN Reference HTMLElement.ariaDescribedByElements
ariaDescription public string MDN Reference HTMLElement.ariaDescription
ariaDetailsElements public readonly Element[] MDN Reference HTMLElement.ariaDetailsElements
ariaDisabled public string MDN Reference HTMLElement.ariaDisabled
ariaErrorMessageElements public readonly Element[] MDN Reference HTMLElement.ariaErrorMessageElements
ariaExpanded public string MDN Reference HTMLElement.ariaExpanded
ariaFlowToElements public readonly Element[] MDN Reference HTMLElement.ariaFlowToElements
ariaHasPopup public string MDN Reference HTMLElement.ariaHasPopup
ariaHidden public string MDN Reference HTMLElement.ariaHidden
ariaInvalid public string MDN Reference HTMLElement.ariaInvalid
ariaKeyShortcuts public string MDN Reference HTMLElement.ariaKeyShortcuts
ariaLabel public string MDN Reference HTMLElement.ariaLabel
ariaLabelledByElements public readonly Element[] MDN Reference HTMLElement.ariaLabelledByElements
ariaLevel public string MDN Reference HTMLElement.ariaLevel
ariaLive public string MDN Reference HTMLElement.ariaLive
ariaModal public string MDN Reference HTMLElement.ariaModal
ariaMultiLine public string MDN Reference HTMLElement.ariaMultiLine
ariaMultiSelectable public string MDN Reference HTMLElement.ariaMultiSelectable
ariaOrientation public string MDN Reference HTMLElement.ariaOrientation
ariaOwnsElements public readonly Element[] MDN Reference HTMLElement.ariaOwnsElements
ariaPlaceholder public string MDN Reference HTMLElement.ariaPlaceholder
ariaPosInSet public string MDN Reference HTMLElement.ariaPosInSet
ariaPressed public string MDN Reference HTMLElement.ariaPressed
ariaReadOnly public string MDN Reference HTMLElement.ariaReadOnly
ariaRelevant public string MDN Reference HTMLElement.ariaRelevant
ariaRequired public string MDN Reference HTMLElement.ariaRequired
ariaRoleDescription public string MDN Reference HTMLElement.ariaRoleDescription
ariaRowCount public string MDN Reference HTMLElement.ariaRowCount
ariaRowIndex public string MDN Reference HTMLElement.ariaRowIndex
ariaRowIndexText public string MDN Reference HTMLElement.ariaRowIndexText
ariaRowSpan public string MDN Reference HTMLElement.ariaRowSpan
ariaSelected public string MDN Reference HTMLElement.ariaSelected
ariaSetSize public string MDN Reference HTMLElement.ariaSetSize
ariaSort public string MDN Reference HTMLElement.ariaSort
ariaValueMax public string MDN Reference HTMLElement.ariaValueMax
ariaValueMin public string MDN Reference HTMLElement.ariaValueMin
ariaValueNow public string MDN Reference HTMLElement.ariaValueNow
ariaValueText public string MDN Reference HTMLElement.ariaValueText
role public string MDN Reference HTMLElement.role
attributes readonly NamedNodeMap The Element.attributes property returns a live collection of all attribute nodes registered to the specified node. MDN Reference HTMLElement.attributes
className public string The className property of the of the specified element. MDN Reference HTMLElement.className
clientHeight readonly number The 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 Reference HTMLElement.clientHeight
clientLeft readonly number The clientLeft read-only property of the Element interface returns the width of the left border of an element in pixels. MDN Reference HTMLElement.clientLeft
clientTop readonly number The clientTop read-only property of the Element interface returns the width of the top border of an element in pixels. MDN Reference HTMLElement.clientTop
clientWidth readonly number The 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 Reference HTMLElement.clientWidth
currentCSSZoom readonly number The 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 Reference HTMLElement.currentCSSZoom
id public string The id property of the Element interface represents the element’s identifier, reflecting the id global attribute. MDN Reference HTMLElement.id
innerHTML public string The innerHTML property of the Element interface gets or sets the HTML or XML markup contained within the element. MDN Reference HTMLElement.innerHTML
localName readonly string The Element.localName read-only property returns the local part of the qualified name of an element. MDN Reference HTMLElement.localName
namespaceURI readonly string The Element.namespaceURI read-only property returns the namespace URI of the element, or null if the element is not in a namespace. MDN Reference HTMLElement.namespaceURI
onfullscreenchange public (this, ev) => any MDN Reference HTMLElement.onfullscreenchange
onfullscreenerror public (this, ev) => any MDN Reference HTMLElement.onfullscreenerror
outerHTML public string The outerHTML attribute of the Element DOM interface gets the serialized HTML fragment describing the element including its descendants. MDN Reference HTMLElement.outerHTML
ownerDocument readonly Document The read-only ownerDocument property of the Node interface returns the top-level document object of the node. MDN Reference HTMLElement.ownerDocument
prefix readonly string The Element.prefix read-only property returns the namespace prefix of the specified element, or null if no prefix is specified. MDN Reference HTMLElement.prefix
scrollHeight readonly number The 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 Reference HTMLElement.scrollHeight
scrollLeft public number The 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 Reference HTMLElement.scrollLeft
scrollTop public number The 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 Reference HTMLElement.scrollTop
scrollWidth readonly number The 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 Reference HTMLElement.scrollWidth
shadowRoot readonly ShadowRoot The Element.shadowRoot read-only property represents the shadow root hosted by the element. MDN Reference HTMLElement.shadowRoot
slot public string The slot property of the Element interface returns the name of the shadow DOM slot the element is inserted in. MDN Reference HTMLElement.slot
tagName readonly string The tagName read-only property of the Element interface returns the tag name of the element on which it’s called. MDN Reference HTMLElement.tagName
attributeStyleMap readonly StylePropertyMap MDN Reference HTMLElement.attributeStyleMap
contentEditable public string MDN Reference HTMLElement.contentEditable
enterKeyHint public string MDN Reference HTMLElement.enterKeyHint
inputMode public string MDN Reference HTMLElement.inputMode
isContentEditable readonly boolean MDN Reference HTMLElement.isContentEditable
onabort public (this, ev) => any MDN Reference HTMLElement.onabort
onanimationcancel public (this, ev) => any MDN Reference HTMLElement.onanimationcancel
onanimationend public (this, ev) => any MDN Reference HTMLElement.onanimationend
onanimationiteration public (this, ev) => any MDN Reference HTMLElement.onanimationiteration
onanimationstart public (this, ev) => any MDN Reference HTMLElement.onanimationstart
onauxclick public (this, ev) => any MDN Reference HTMLElement.onauxclick
onbeforeinput public (this, ev) => any MDN Reference HTMLElement.onbeforeinput
onbeforematch public (this, ev) => any MDN Reference HTMLElement.onbeforematch
onbeforetoggle public (this, ev) => any MDN Reference HTMLElement.onbeforetoggle
onblur public (this, ev) => any MDN Reference HTMLElement.onblur
oncancel public (this, ev) => any MDN Reference HTMLElement.oncancel
oncanplay public (this, ev) => any MDN Reference HTMLElement.oncanplay
oncanplaythrough public (this, ev) => any MDN Reference HTMLElement.oncanplaythrough
onchange public (this, ev) => any MDN Reference HTMLElement.onchange
onclick public (this, ev) => any MDN Reference HTMLElement.onclick
onclose public (this, ev) => any MDN Reference HTMLElement.onclose
oncontextlost public (this, ev) => any MDN Reference HTMLElement.oncontextlost
oncontextmenu public (this, ev) => any MDN Reference HTMLElement.oncontextmenu
oncontextrestored public (this, ev) => any MDN Reference HTMLElement.oncontextrestored
oncopy public (this, ev) => any MDN Reference HTMLElement.oncopy
oncuechange public (this, ev) => any MDN Reference HTMLElement.oncuechange
oncut public (this, ev) => any MDN Reference HTMLElement.oncut
ondblclick public (this, ev) => any MDN Reference HTMLElement.ondblclick
ondrag public (this, ev) => any MDN Reference HTMLElement.ondrag
ondragend public (this, ev) => any MDN Reference HTMLElement.ondragend
ondragenter public (this, ev) => any MDN Reference HTMLElement.ondragenter
ondragleave public (this, ev) => any MDN Reference HTMLElement.ondragleave
ondragover public (this, ev) => any MDN Reference HTMLElement.ondragover
ondragstart public (this, ev) => any MDN Reference HTMLElement.ondragstart
ondrop public (this, ev) => any MDN Reference HTMLElement.ondrop
ondurationchange public (this, ev) => any MDN Reference HTMLElement.ondurationchange
onemptied public (this, ev) => any MDN Reference HTMLElement.onemptied
onended public (this, ev) => any MDN Reference HTMLElement.onended
onerror public OnErrorEventHandlerNonNull MDN Reference HTMLElement.onerror
onfocus public (this, ev) => any MDN Reference HTMLElement.onfocus
onformdata public (this, ev) => any MDN Reference HTMLElement.onformdata
ongotpointercapture public (this, ev) => any MDN Reference HTMLElement.ongotpointercapture
oninput public (this, ev) => any MDN Reference HTMLElement.oninput
oninvalid public (this, ev) => any MDN Reference HTMLElement.oninvalid
onkeydown public (this, ev) => any MDN Reference HTMLElement.onkeydown
onkeypress public (this, ev) => any Deprecated MDN Reference HTMLElement.onkeypress
onkeyup public (this, ev) => any MDN Reference HTMLElement.onkeyup
onload public (this, ev) => any MDN Reference HTMLElement.onload
onloadeddata public (this, ev) => any MDN Reference HTMLElement.onloadeddata
onloadedmetadata public (this, ev) => any MDN Reference HTMLElement.onloadedmetadata
onloadstart public (this, ev) => any MDN Reference HTMLElement.onloadstart
onlostpointercapture public (this, ev) => any MDN Reference HTMLElement.onlostpointercapture
onmousedown public (this, ev) => any MDN Reference HTMLElement.onmousedown
onmouseenter public (this, ev) => any MDN Reference HTMLElement.onmouseenter
onmouseleave public (this, ev) => any MDN Reference HTMLElement.onmouseleave
onmousemove public (this, ev) => any MDN Reference HTMLElement.onmousemove
onmouseout public (this, ev) => any MDN Reference HTMLElement.onmouseout
onmouseover public (this, ev) => any MDN Reference HTMLElement.onmouseover
onmouseup public (this, ev) => any MDN Reference HTMLElement.onmouseup
onpaste public (this, ev) => any MDN Reference HTMLElement.onpaste
onpause public (this, ev) => any MDN Reference HTMLElement.onpause
onplay public (this, ev) => any MDN Reference HTMLElement.onplay
onplaying public (this, ev) => any MDN Reference HTMLElement.onplaying
onpointercancel public (this, ev) => any MDN Reference HTMLElement.onpointercancel
onpointerdown public (this, ev) => any MDN Reference HTMLElement.onpointerdown
onpointerenter public (this, ev) => any MDN Reference HTMLElement.onpointerenter
onpointerleave public (this, ev) => any MDN Reference HTMLElement.onpointerleave
onpointermove public (this, ev) => any MDN Reference HTMLElement.onpointermove
onpointerout public (this, ev) => any MDN Reference HTMLElement.onpointerout
onpointerover public (this, ev) => any MDN Reference HTMLElement.onpointerover
onpointerrawupdate public (this, ev) => any Available only in secure contexts. MDN Reference HTMLElement.onpointerrawupdate
onpointerup public (this, ev) => any MDN Reference HTMLElement.onpointerup
onprogress public (this, ev) => any MDN Reference HTMLElement.onprogress
onratechange public (this, ev) => any MDN Reference HTMLElement.onratechange
onreset public (this, ev) => any MDN Reference HTMLElement.onreset
onresize public (this, ev) => any MDN Reference HTMLElement.onresize
onscroll public (this, ev) => any MDN Reference HTMLElement.onscroll
onscrollend public (this, ev) => any MDN Reference HTMLElement.onscrollend
onsecuritypolicyviolation public (this, ev) => any MDN Reference HTMLElement.onsecuritypolicyviolation
onseeked public (this, ev) => any MDN Reference HTMLElement.onseeked
onseeking public (this, ev) => any MDN Reference HTMLElement.onseeking
onselect public (this, ev) => any MDN Reference HTMLElement.onselect
onselectionchange public (this, ev) => any MDN Reference HTMLElement.onselectionchange
onselectstart public (this, ev) => any MDN Reference HTMLElement.onselectstart
onslotchange public (this, ev) => any MDN Reference HTMLElement.onslotchange
onstalled public (this, ev) => any MDN Reference HTMLElement.onstalled
onsubmit public (this, ev) => any MDN Reference HTMLElement.onsubmit
onsuspend public (this, ev) => any MDN Reference HTMLElement.onsuspend
ontimeupdate public (this, ev) => any MDN Reference HTMLElement.ontimeupdate
ontoggle public (this, ev) => any MDN Reference HTMLElement.ontoggle
ontouchcancel? public (this, ev) => any MDN Reference HTMLElement.ontouchcancel
ontouchend? public (this, ev) => any MDN Reference HTMLElement.ontouchend
ontouchmove? public (this, ev) => any MDN Reference HTMLElement.ontouchmove
ontouchstart? public (this, ev) => any MDN Reference HTMLElement.ontouchstart
ontransitioncancel public (this, ev) => any MDN Reference HTMLElement.ontransitioncancel
ontransitionend public (this, ev) => any MDN Reference HTMLElement.ontransitionend
ontransitionrun public (this, ev) => any MDN Reference HTMLElement.ontransitionrun
ontransitionstart public (this, ev) => any MDN Reference HTMLElement.ontransitionstart
onvolumechange public (this, ev) => any MDN Reference HTMLElement.onvolumechange
onwaiting public (this, ev) => any MDN Reference HTMLElement.onwaiting
onwebkitanimationend public (this, ev) => any Deprecated This is a legacy alias of onanimationend. MDN Reference HTMLElement.onwebkitanimationend
onwebkitanimationiteration public (this, ev) => any Deprecated This is a legacy alias of onanimationiteration. MDN Reference HTMLElement.onwebkitanimationiteration
onwebkitanimationstart public (this, ev) => any Deprecated This is a legacy alias of onanimationstart. MDN Reference HTMLElement.onwebkitanimationstart
onwebkittransitionend public (this, ev) => any Deprecated This is a legacy alias of ontransitionend. MDN Reference HTMLElement.onwebkittransitionend
onwheel public (this, ev) => any MDN Reference HTMLElement.onwheel
accessKey public string The HTMLElement.accessKey property sets the keystroke which a user can press to jump to a given element. MDN Reference HTMLElement.accessKey
accessKeyLabel readonly string The 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 Reference HTMLElement.accessKeyLabel
autocapitalize public string The autocapitalize property of the HTMLElement interface represents the element’s capitalization behavior for user input. MDN Reference HTMLElement.autocapitalize
autocorrect public boolean The autocorrect property of the HTMLElement interface controls whether or not autocorrection of editable text is enabled for spelling and/or punctuation errors. MDN Reference HTMLElement.autocorrect
dir public string The HTMLElement.dir property indicates the text writing directionality of the content of the current element. MDN Reference HTMLElement.dir
draggable public boolean The draggable property of the HTMLElement interface gets and sets a Boolean primitive indicating if the element is draggable. MDN Reference HTMLElement.draggable
hidden public boolean The HTMLElement property hidden reflects the value of the element’s hidden attribute. MDN Reference HTMLElement.hidden
inert public boolean The HTMLElement property inert reflects the value of the element’s inert attribute. MDN Reference HTMLElement.inert
innerText public string The innerText property of the HTMLElement interface represents the rendered text content of a node and its descendants. MDN Reference HTMLElement.innerText
lang public string The 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 Reference HTMLElement.lang
offsetHeight readonly number The offsetHeight read-only property of the HTMLElement interface returns the height of an element, including vertical padding and borders, as an integer. MDN Reference HTMLElement.offsetHeight
offsetLeft readonly number The 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 Reference HTMLElement.offsetLeft
offsetParent readonly Element The HTMLElement.offsetParent read-only property returns a reference to the element which is the closest (nearest in the containment hierarchy) positioned ancestor element. MDN Reference HTMLElement.offsetParent
offsetTop readonly number The 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 Reference HTMLElement.offsetTop
offsetWidth readonly number The offsetWidth read-only property of the HTMLElement interface returns the layout width of an element as an integer. MDN Reference HTMLElement.offsetWidth
outerText public string The outerText property of the HTMLElement interface returns the same value as HTMLElement.innerText. MDN Reference HTMLElement.outerText
popover public string The 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 Reference HTMLElement.popover
spellcheck public boolean The spellcheck property of the HTMLElement interface represents a boolean value that controls the spell-checking hint. MDN Reference HTMLElement.spellcheck
title public string The 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 Reference HTMLElement.title
translate public boolean The 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 Reference HTMLElement.translate
writingSuggestions public string The 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 Reference HTMLElement.writingSuggestions
autofocus public boolean MDN Reference HTMLElement.autofocus
dataset readonly DOMStringMap MDN Reference HTMLElement.dataset
nonce? public string MDN Reference HTMLElement.nonce
tabIndex public number MDN Reference HTMLElement.tabIndex
baseURI readonly string The read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node. MDN Reference HTMLElement.baseURI
childNodes readonly NodeListOf<ChildNode> The read-only childNodes property of the Node interface returns a live the first child node is assigned index 0. MDN Reference HTMLElement.childNodes
firstChild readonly ChildNode The 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 Reference HTMLElement.firstChild
isConnected readonly boolean The 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 Reference HTMLElement.isConnected
lastChild readonly ChildNode The read-only lastChild property of the Node interface returns the last child of the node, or null if there are no child nodes. MDN Reference HTMLElement.lastChild
nextSibling readonly ChildNode The 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 Reference HTMLElement.nextSibling
nodeName readonly string The read-only nodeName property of Node returns the name of the current node as a string. MDN Reference HTMLElement.nodeName
nodeType readonly number The read-only nodeType property of a Node interface is an integer that identifies what the node is. MDN Reference HTMLElement.nodeType
nodeValue public string The nodeValue property of the Node interface returns or sets the value of the current node. MDN Reference HTMLElement.nodeValue
parentElement readonly HTMLElement The 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 Reference HTMLElement.parentElement
parentNode readonly ParentNode The read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree. MDN Reference HTMLElement.parentNode
previousSibling readonly ChildNode The 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 Reference HTMLElement.previousSibling
ELEMENT_NODE readonly 1 node is an element. HTMLElement.ELEMENT_NODE
ATTRIBUTE_NODE readonly 2 - HTMLElement.ATTRIBUTE_NODE
TEXT_NODE readonly 3 node is a Text node. HTMLElement.TEXT_NODE
CDATA_SECTION_NODE readonly 4 node is a CDATASection node. HTMLElement.CDATA_SECTION_NODE
ENTITY_REFERENCE_NODE readonly 5 - HTMLElement.ENTITY_REFERENCE_NODE
ENTITY_NODE readonly 6 - HTMLElement.ENTITY_NODE
PROCESSING_INSTRUCTION_NODE readonly 7 node is a ProcessingInstruction node. HTMLElement.PROCESSING_INSTRUCTION_NODE
COMMENT_NODE readonly 8 node is a Comment node. HTMLElement.COMMENT_NODE
DOCUMENT_NODE readonly 9 node is a document. HTMLElement.DOCUMENT_NODE
DOCUMENT_TYPE_NODE readonly 10 node is a doctype. HTMLElement.DOCUMENT_TYPE_NODE
DOCUMENT_FRAGMENT_NODE readonly 11 node is a DocumentFragment node. HTMLElement.DOCUMENT_FRAGMENT_NODE
NOTATION_NODE readonly 12 - HTMLElement.NOTATION_NODE
DOCUMENT_POSITION_DISCONNECTED readonly 1 Set when node and other are not in the same tree. HTMLElement.DOCUMENT_POSITION_DISCONNECTED
DOCUMENT_POSITION_PRECEDING readonly 2 Set when other is preceding node. HTMLElement.DOCUMENT_POSITION_PRECEDING
DOCUMENT_POSITION_FOLLOWING readonly 4 Set when other is following node. HTMLElement.DOCUMENT_POSITION_FOLLOWING
DOCUMENT_POSITION_CONTAINS readonly 8 Set when other is an ancestor of node. HTMLElement.DOCUMENT_POSITION_CONTAINS
DOCUMENT_POSITION_CONTAINED_BY readonly 16 Set when other is a descendant of node. HTMLElement.DOCUMENT_POSITION_CONTAINED_BY
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC readonly 32 - HTMLElement.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
nextElementSibling readonly Element Returns the first following sibling that is an element, and null otherwise. MDN Reference HTMLElement.nextElementSibling
previousElementSibling readonly Element Returns the first preceding sibling that is an element, and null otherwise. MDN Reference HTMLElement.previousElementSibling
childElementCount readonly number MDN Reference HTMLElement.childElementCount
children readonly HTMLCollection Returns the child elements. MDN Reference HTMLElement.children
firstElementChild readonly Element Returns the first child that is an element, and null otherwise. MDN Reference HTMLElement.firstElementChild
lastElementChild readonly Element Returns the last child that is an element, and null otherwise. MDN Reference HTMLElement.lastElementChild
assignedSlot readonly HTMLSlotElement MDN Reference HTMLElement.assignedSlot