We have a custom numeric textbox in asp.net. In the oninput event, the input is checked on invalid characters, and the value of the textbox is set. The OnChange event is han
There is a bug of IE9 about onchange event, therefore maybe you could add onpropertychange event on the input(bind both two events):
<input type="text" onKeyDown="this.value=this.value;" onChange="alert('test');" onpropertychange="alert('change');" />
This is just a workaround, hope this help.