Skip to main content
Module

x/evt/lib/types/index.ts>dom.DocumentFragment

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.DocumentFragment
import { type dom } from "https://deno.land/x/evt@v2.3.1/lib/types/index.ts";
const { DocumentFragment } = dom;

A minimal document object that has no parent. It is used as a lightweight version of Document that stores a segment of a document structure comprised of nodes just like a standard document. The key difference is that because the document fragment isn't part of the active document tree structure, changes made to the fragment don't affect the document, cause reflow, or incur any performance impact that can occur when changes are made.

Methods

getElementById(elementId: string): HTMLElement | null