jquery get select options code example

Example 1: jquery get selected option value

var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value

Example 2: jquery get all select options

//looping through options select with jQuery
$("#mySelectID option").each(function(){
    var thisOptionValue=$(this).val();
});

Example 3: get option value jquery



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

//output state2

Example 4: jquery get dropdown selected value



var value1 = $("[id*=DropDownListId]").val();
var value2 = $(".DropDownListClass").val();

Tags:

Misc Example