input on change jquery. code example
Example 1: jquery input text value change event
$("input").change(function(){
alert("The text has been changed.");
});
Example 2: jquery on change
$(document).on('change', 'input', function() {
// Does some stuff and logs the event to the console
});