Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>Attr

Advanced Web Composition for Future
Latest
interface Attr
implements Node
import { type Attr } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

A DOM element's attribute as an object. In most DOM methods, you will probably directly retrieve the attribute as a string (e.g., Element.getAttribute(), but certain functions (e.g., Element.getAttributeNode()) or means of iterating give Attr types.

Properties

readonly
localName: string
readonly
name: string
readonly
namespaceURI: string | null
readonly
ownerDocument: Document
readonly
ownerElement: Element | null
readonly
prefix: string | null
readonly
specified: boolean
value: string