Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno_dom/deno-dom-wasm-noinit.ts>Document

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

Constructors

new
Document()

Properties

readonly
_nwapi: SelectorApi
body: Element
readonly
childElementCount: number
readonly
compatMode: string
readonly
doctype: DocumentType | null
readonly
documentElement: Element | null
readonly
documentURI: string
head: Element
readonly
hidden: boolean
implementation: DOMImplementation
readonly
title: string
readonly
visibilityState: VisibilityState

Methods

private
_getElementsByTagName(tagName: string, search: Node[]): Node[]
private
_getElementsByTagNameWildcard(node: Node, search: Node[]): Node[]
cloneNode(deep?: boolean): Document
createComment(data?: string): Comment
createElement(tagName: string, options?: ElementCreationOptions): Element
createElementNS(
namespace: NamespaceURI,
qualifiedName: string,
): Element
createTextNode(data?: string): Text
getElementById(id: string): Element | null
getElementsByClassName(className: string): Element[]
getElementsByTagName(tagName: string): Element[]
getElementsByTagNameNS(_namespace: string, localName: string): Element[]
hasFocus(): boolean
importNode(node: Node, deep?: boolean): Node
querySelector<T = Element>(selectors: string): T | null
querySelectorAll<T = Element>(selectors: string): NodeList<T>