Skip to main content
Module

x/aleph/vendor/mod.ts>Document

The Full-stack Framework in Deno.
Very Popular
Go to Latest
class Document
extends Node
import { Document } from "https://deno.land/x/aleph@v0.2.13/vendor/mod.ts";

Constructors

new
Document()

Properties

body: Element
readonly
compatMode: string
readonly
documentElement: Element | null
readonly
documentURI
head: Element
readonly
hidden
implementation: DOMImplementation
readonly
title
readonly
visibilityState: VisibilityState

Methods

private
_getElementsByClassName(className: string, search: Node[]): Node[]
private
_getElementsByTagName(tagName: string, search: Node[]): Node[]
private
_getElementsByTagNameWildcard(node: Node, search: Node[]): Node[]
appendChild(child: Node)
createComment(data?: string): Comment
createElement(tagName: string, options?: ElementCreationOptions): 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
querySelector(selectors: string): Element | null
querySelectorAll(selectors: string): NodeList