0 Taryn posted How to get jQuery dropdown value onchange event How to get jQuery dropdown value onchange event Edit Question
0 eclipse-learner answered Jul 19 '21 00:00 $('select').change(function(){ var val =$(this).val(); console.log(val) }) you will get the value selected option text $('select') will apply to all select box if you have class or id for speicif select box , you can do this way $('.classname').change(function(){ var val =$(this).val(); console.log(val) }) $('#classname').change(function(){ var val =$(this).val(); console.log(val) }) Edit Answer