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
If you want the event to be fired whenever something is changed within the element then you could use the keyup event.
This covers every change to an input using jQuery 1.7 and above:
$(".inputElement").on("input", null, null, callbackFunction);