appendText

inline fun Element.appendText(text: String): Element

Deprecated

Warning since 1.4

This API is moved to another package, use 'kotlinx.dom.appendText' instead.

Replace with

import kotlinx.dom.appendText
this.appendText(text)

Creates text node and append it to the element.

Return

this element