xxxxxxxxxx
If you want to get the selected option text, you can use $(select element). text() . var text = $('#aioConceptName option:selected'). text();
If you want to get selected option value, you can use $(select element). val() . var val = $('#aioConceptName option:selected').val();
xxxxxxxxxx
$("select.your-select").change(function(){
$(this).children("option:selected").val();
});
xxxxxxxxxx
var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value
xxxxxxxxxx
$(document).ready(function(){
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});
xxxxxxxxxx
let payment_type = $("#olca_form_submit select[name='payment_type']")
.find(":selected")
.val();
xxxxxxxxxx
var conceptName = $('#aioConceptName').find(":selected").text();
xxxxxxxxxx
// Select an option by value
$('select').val('optionValue');
// Select an option by index
$('select option:eq(index)').prop('selected', true);
// Select the first option
$('select option:first').prop('selected', true);
// Select the last option
$('select option:last').prop('selected', true);