ParentNode

interface ParentNode : JsAny

Exposes the JavaScript ParentNode to Kotlin

Inheritors

Properties

Link copied to clipboard
abstract val childElementCount: Int
Link copied to clipboard
abstract val children: HTMLCollection
Link copied to clipboard
abstract val firstElementChild: Element?
Link copied to clipboard
abstract val lastElementChild: Element?

Functions

Link copied to clipboard
abstract fun append(vararg nodes: String)
abstract fun append(vararg nodes: Node)
Link copied to clipboard
abstract fun prepend(vararg nodes: String)
abstract fun prepend(vararg nodes: Node)
Link copied to clipboard
abstract fun querySelector(selectors: String): Element?
Link copied to clipboard
abstract fun querySelectorAll(selectors: String): NodeList