What I want to do is that when a textbox changes its content it performs an action, but the user will never see the textbox will be filled automatically, so there will never be a typing for the textbox change.
Form 1:
jQuery('#some_text_box').on('input propertychange paste', function() {
// do your stuff
});
The form above needs to be typed and in almost all the options you need to type, for my change of textbox to work I must click on the text box to take it.