If I change the value of an input field programmatically, the input and change events are not firing. For example, I have this scenario:
input
change
$input.val($input.val() + 'x') $input.trigger('change');
The change event only fire when input blur.