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

$( "#myselect option:selected" ).val();

Example 3: jquery select option by value

$('.id_100 option[value=val2]').attr('selected','selected');

Example 4: get selected option value jquery

$("#vacc_wellness_agegroups option:selected").val();

Example 5: $(this) option selected jquery

var cur_value = $('option:selected',this).text();

Example 6: get selected element html jquery

$('.classSelector')[0].outerHTML