selected value in dropdown jquery code example

Example 1: how to get the value of dropdown in jquery

BY LOVE
$('#ddlName option:selected').val();

Example 2: get option value jquery

<select id="state">
    <option value="state1" data-id="1">state1</option>
    <option value="state2" data-id="2">state2</option>
    <option value="state3" data-id="3">state3</option>
</select>

$('#state option[data-id="2"]').val();

//output state2

Example 3: jquery get dropdown list selected value

$('#dropDownId').val();

Example 4: how To fetch the index of dropdown using jquery

BY LOVE
$('#ddlPartnerType option:selected').index()

Example 5: jquery: get selected option of the drop down list

$('#ddlID').val();
$('#ddlID').text();

Example 6: jquery get selected option value

jquery get selected option value

Tags:

Misc Example