javascript - Call event when checkbox value is modified but not clicked -
i have dropdown list containing width values:
- val1
- val2
- val3
- all
and have 3 checkboxes:
- val1
- val2
- val3
the checkboxes responsible progress bar, of them have onclick
function , working well. want make them work when use dropdown
list can't. when select value dropdown
list modifies checkboxes checked
attribute has no effect on progress bar , don't know why.
if using jquery (as are, according tags), set event handler change
event. must trigger change
event manually, since change value programatically.
some information manual triggering of change
event see question
Comments
Post a Comment