Answers for "return select value jquery"

9

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
-1

select dropdown value using jquery

$('#dropdownid').val('selectedvalue');
Posted by: Guest on November-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language