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
// .blur is triggered when element loses focus
$('#target').blur(function() { alert($(this).val()); });
// To trigger manually use:
$('#target').blur();