Answers for "jquery get option selected"

7

jqury get selected option

<select id="myselect">
    <option value="1">Mr</option>
    <option value="2">Mrs</option>
    <option value="3">Ms</option>
    <option value="4">Dr</option>
    <option value="5">Prof</option>
</select>

<script>
$( "#myselect option:selected" ).val();
</script>
Posted by: Guest on August-18-2020
2

get value of selected checkbox jquery

$('#checkbox_id:checked').val();
//if checkbox is selected than gets its value
Posted by: Guest on October-20-2020
1

get selected option jquery

$( "#myselect option:selected" ).text();
Posted by: Guest on October-06-2020
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
1

jquery selected option

$( "#myselect option:selected" ).val();
Posted by: Guest on July-13-2020
1

jquery select option value selected

$("div.id_100 select").val("val2").change();
Posted by: Guest on October-26-2021

Code answers related to "jquery get option selected"

Browse Popular Code Answers by Language