I currently have a class in which the default change event is added.
The default change event works in most cases, but in some cases I delete the change event and add a custom change event.
However, only in IE8, it seems I installed:
ele.checkbox.checkek = true;
the change event that I set to the checkbox is fired. In all other browsers, I need to call fireEvent ("change") to trigger an event change.
Is it possible to prevent this, or if there is a way that I can determine when adding custom changes?
Thanks.
source share