Answers for "select option html 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
0

access selected option in jquery

$( "#myselect option:selected" ).text();
// => "Mr"
Posted by: Guest on November-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language