Answers for "show value <selectec> 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
0

how to show selected value in select box using jquery

$('selector').val(value);
Posted by: Guest on April-12-2021

Code answers related to "show value <selectec> option jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language