Answers for "how to find dropdown selected value in jquery"

3

how to get the value of dropdown in jquery

BY LOVE
$('#ddlName option:selected').val();
Posted by: Guest on May-08-2020
1

Jquery get value of dropdown selected

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language