``` val c = div("clickable div") { ...
# kvision
r
Copy code
val c = div("clickable div") {
                onClick {
                    console.log("clicked")
                }
            }
            button("test with jQuery").onClick {
                c.getElementJQuery()?.trigger("click")
            }
            button("test with Vanilla JS").onClick {
                val event = Event("click")
                c.getElement()?.dispatchEvent(event)
            }
a
Really appreciate your help! I’ll be looking to contribute soon