Answers for "this selected option jquery"

1

jquery get selected option value

$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
Posted by: Guest on September-10-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
3

option selected jquery

$('select option[value=8272]').attr('selected', '');
Posted by: Guest on July-02-2021
2

jquery option selected value

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

<script>
  alert($( "#myselect" ).val()); //alert '2'
  //OR
  alert($( "#myselect option:selected" ).attr('value')); //alert '2'
  
  //Use this if you want to get the label and not the value
  alert($( "#myselect option:selected" ).text()); //alert 'Mrs'
</script>
Posted by: Guest on July-01-2020
0

access selected option in jquery

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

$(this) option selected jquery

var cur_value = $('option:selected',this).text();
Posted by: Guest on October-08-2020

Code answers related to "this selected option jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language