oninput event is very useful to track input fields changes.
However it is not supported in IE version < 9. But older IE versions has its own proprietary event onpropertychange that does the same as oninput.
So you can use it this way:
$(':input').on('input propertychange');