KSS is in production mode. Setup

Binder ids

We bind the events on these two buttons with different binder ids. Events bound to different binders will not merge. (Note that this is not the typical usage if event ids, only a simple check that it really works. )If you click the buttons, you must receive logs per each event bound.

Two loggers are used, because the order in which the events trigger is undefined and browser dependant.




Log

Reset

Log 2

Reset

First we bind an event with id "manual" to each button. We also bind event with id "manual2" to the first button. Then we bind events that acquire their id from kssattr to the second and third buttons. This way each button will have 2 click events bound, in the following way:

ButtonBound event ids
button1click(manual), click(manual2)
button1click(manual), click(parm1))
button1click(manual), click(parm2))