Q:

get selected option text jquery

var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value
10
$('#id').children(':selected').text();
2
 $("#mySelect option:selected").html();
5
$('#id option:selected').text()
2
$("select.your-select").change(function(){ 
	$(this).children("option:selected").val();
});
2
$("#vacc_wellness_agegroups option:selected").val();
2
$("#id option:selected").text();
0
$( "#myselect option:selected" ).text();
0
jquery get selected option value
-1

New to Communities?

Join the community