ChildNodeInserted

@Serializable
data class ChildNodeInserted(val parentNodeId: NodeId, val previousNodeId: NodeId, val node: Node) : DOMEvent(source)

Mirrors DOMNodeInserted event.

Official doc

Constructors

Link copied to clipboard
constructor(parentNodeId: NodeId, previousNodeId: NodeId, node: Node)

Properties

Link copied to clipboard
val node: Node

Inserted node data.

Link copied to clipboard

Id of the node that has changed.

Link copied to clipboard

Id of the previous sibling.