HTMLCollection

abstract external class HTMLCollection : ItemArrayLike<Element> , UnionElementOrHTMLCollection

Exposes the JavaScript HTMLCollection to Kotlin

Constructors

HTMLCollection
Link copied to clipboard
fun HTMLCollection()

Functions

item
Link copied to clipboard
open override fun item(index: Int): Element?
namedItem
Link copied to clipboard
fun namedItem(name: String): Element?

Properties

length
Link copied to clipboard
abstract val length: Int

Inheritors

HTMLFormControlsCollection
Link copied to clipboard
HTMLOptionsCollection
Link copied to clipboard

Extensions

get
Link copied to clipboard
inline operator fun HTMLCollection.get(index: Int): Element?
inline operator fun HTMLCollection.get(name: String): Element?