jquery on change human input code example
Example 1: jquery on input
$('input').on('input propertychange', ()=>{});
Example 2: jquery detect textarea change
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});