There seems to be a bug in IE9'soninput event. The bug causes the event to not fire when characters are deleted (e.g. – backspace, delete, cut).
Countable currently uses oninputif the browser is capable. While IE9 is capable of oninput, it might be better to force IE9 to use the onkeyup event. IE9 does appear to fire onkeyup when characters are deleted.
There seems to be a bug in IE9's
oninput
event. The bug causes the event to not fire when characters are deleted (e.g. – backspace, delete, cut).Countable currently uses
oninput
if the browser is capable. While IE9 is capable ofoninput
, it might be better to force IE9 to use theonkeyup
event. IE9 does appear to fireonkeyup
when characters are deleted.