All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.web.html.SubmitEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.html

import web.events.Event
import web.events.EventInit
import web.events.EventType

external interface SubmitEventInit : EventInit {
    var submitter: HTMLElement?
}

open external class SubmitEvent(
    override val type: EventType,
    init: SubmitEventInit = definedExternally,
) : Event {
    /** Returns the element representing the submit button that triggered the form submission, or null if the submission was not triggered by a button. */
    val submitter: HTMLElement?

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy