0
I’m trying to call Handler an event via jquery, by using the method triggerHandler
is only affecting one of the selected elements, and the selector definitely represents several elements.
The triggerHandler is called inside the event from a check-box to change the values of several other check-boxes, with the same value as it. Setting the checked property for all other check-boxes works, however triggerHandler does not.
What I’m doing wrong?
If it does... something in my mind said that
trigger("change")
would cause the checkbox to switch status, as if I were simulating the change.– Miguel Angelo