HTMLOptionsCollection

abstract external class HTMLOptionsCollection : HTMLCollection

Exposes the JavaScript HTMLOptionsCollection to Kotlin

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
fun add(element: UnionHTMLOptGroupElementOrHTMLOptionElement, before: dynamic = definedExternally)
Link copied to clipboard
open override fun item(index: Int): Element?
Link copied to clipboard
fun namedItem(name: String): Element?
Link copied to clipboard
fun remove(index: Int)

Properties

Link copied to clipboard
open override var length: Int
Link copied to clipboard
open var selectedIndex: Int

Extensions

Link copied to clipboard

Returns the view of this ItemArrayLike<T> collection as List<T>

Link copied to clipboard
inline operator fun HTMLCollection.get(index: Int): Element?
inline operator fun HTMLCollection.get(name: String): Element?
Link copied to clipboard
inline operator fun HTMLOptionsCollection.set(index: Int, option: HTMLOptionElement?)