Published
- 1 min read
select onchange get value jquery
The solution for this is noted below
select onchange get value jquery
Solution
$('#the_id_select').on('change', function() {
alert( this.value );
});
//or
$("#the_id_select").change(function(){
alert( this.value );
});
Try other methods by searching on the site. That is if this doesn’t work