Answers for "dropdown menu selected value jquery"

3

how to get the value of dropdown in jquery

BY LOVE
$('#ddlName option:selected').val();
Posted by: Guest on May-08-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 get value of dropdown selected

var conceptName = $('#aioConceptName').find(":selected").text();
Posted by: Guest on August-12-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

jquery: get selected option of the drop down list

$('#ddlID').val();
$('#ddlID').text();
Posted by: Guest on June-28-2020
0

jquery get dropdown selected value

<asp:DropDownList ID="DropDownListId" runat="server" CssClass="DropDownListClass"></asp:DropDownList>

var value1 = $("[id*=DropDownListId]").val();
var value2 = $(".DropDownListClass").val();
Posted by: Guest on January-05-2021

Code answers related to "dropdown menu selected value jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language