Skip to main content
Module

x/deno_dom/deno-dom-wasm.ts>Element

Browser DOM & HTML parser in Deno
Extremely Popular
Go to Latest
class Element
extends Node
Re-export
import { Element } from "https://deno.land/x/deno_dom@v0.1.33-alpha/deno-dom-wasm.ts";

Constructors

new
Element(
tagName: string,
parentNode: Node | null,
attributes: [string, string][],
key: CTOR_KEY,
)

Properties

attributes: NamedNodeMap
readonly
childElementCount: number
readonly
children: HTMLCollection
readonly
classList: DOMTokenList
className: string
readonly
firstElementChild: Element | null
id: string
innerHTML: string
innerText: string
readonly
lastElementChild: Element | null
localName: string
readonly
nextElementSibling: Element | null
outerHTML: string
readonly
previousElementSibling: Element | null

Methods

_getElementsByTagName(tagName: string, search: Node[]): Node[]
after(...nodes: (Node | string)[])
append(...nodes: (Node | string)[])
before(...nodes: (Node | string)[])
getAttribute(name: string): string | null
getAttributeNames(): string[]
getElementById(id: string): Element | null
getElementsByClassName(className: string): Element[]
getElementsByTagName(tagName: string): Element[]
getElementsByTagNameNS(_namespace: string, localName: string): Element[]
hasAttribute(name: string): boolean
hasAttributeNS(_namespace: string, name: string): boolean
matches(selectorString: string): boolean
prepend(...nodes: (Node | string)[])
querySelector(selectors: string): Element | null
querySelectorAll(selectors: string): NodeList
removeAttribute(rawName: string)
replaceWith(...nodes: (Node | string)[])
setAttribute(rawName: string, value: any)
type alias Element
Re-export
import { type Element } from "https://deno.land/x/deno_dom@v0.1.33-alpha/deno-dom-wasm.ts";
variable Element
Re-export
import { Element } from "https://deno.land/x/deno_dom@v0.1.33-alpha/deno-dom-wasm.ts";

type

Pick<ConstructibleElement, keyof ConstructibleElement> & Function