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
Below code works fine for me with Jquery 1.8.3
HTML :
Javascript/JQuery:
$("#myId").on('change keydown paste input', function(){ doSomething(); });