In my experience, input type=\"text\" onchange event usually occurs only after you leave (blur) the control.
input type=\"text\"
onchange
blur
Is there a way to
2018 here, this is what I do:
$(inputs).on('change keydown paste input propertychange click keyup blur',handler);
If you can point out flaws in this approach, I would be grateful.