There are two ways to integrate DOM events.
The general way is to define an FRP event and specify the FRP event in the event handler of a DOM element.
(frp/defe click)
(def c
[:button {:on-click #(click)}])
Another way is to use predefined FRP events in frp.window and other namespaces.
window/click
One difference between the two examples above is that window/click captures click DOM events from different DOM elements in the window whereas :on-click captures click DOM events only in the button.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |