Answers for "jquery select dropdown value"

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 selected option

$( "#myselect option:selected" ).val();
Posted by: Guest on July-13-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 "jquery select dropdown value"

Browse Popular Code Answers by Language