Answers for "get value from option jquery"

8

select option value jquery

$("select.country").change(function(){
  var selectedCountry = $(this).children("option:selected").val();
  alert("You have selected the country - " + selectedCountry);
});
Posted by: Guest on February-19-2020
3

get selected option value jquery

$("#vacc_wellness_agegroups option:selected").val();
Posted by: Guest on October-06-2020
-1

jquery get selected option value

var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value
Posted by: Guest on March-27-2021

Code answers related to "get value from option jquery"

Browse Popular Code Answers by Language