Answers for "select a dropdown value in jquery"

7

how to get the value of dropdown in jquery

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

jquery get dropdown list selected value

$('#dropDownId').val();
Posted by: Guest on May-14-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 "select a dropdown value in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language