jquery onchange select code example
Example 1: jquery onchange
$("input").change(function(){
alert("The text has been changed.");
});
Example 2: on change jquery
You can apply any one approach:
$("#Input_Id").change(function(){
});
$("#Input_Id").on('change', function(){
});
$("body").on('change', '#Input_Id', function(){
});
Example 3: .on change get value
$('select').on('change', function() {
alert( this.value );
});
Example 4: js select on change value
document.getElementById('my-select').addEventListener('change', function() {
console.log('You selected: ', this.value);
});
Example 5: jquery on change
$(document).on('change', 'input', function() {
});