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

main.dom.events.SubmitEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package dom.events

import dom.html.HTMLElement
import web.events.Event
import web.events.EventInit

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

open external class SubmitEvent(
    type: String,
    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