When using jquery .change on an input the event will only be fired when the input loses focus
.change
input
In my case, I need to make a call to the serv
This covers every change to an input using jQuery 1.7 and above:
$(".inputElement").on("input", null, null, callbackFunction);