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
Please, judge next approach using JQuery:
HTML:
Javascript(JQuery):
$("#inputId").keyup(function(){ $("#inputId").blur(); $("#inputId").focus(); }); $("#inputId").change(function(){ //do whatever you need to do on actual change of the value of the input field });