How to make all selected options enabled in select element using jQuery
For dropdown options you probably want something like this:
# Get selected value
$('#aioConceptName').find(":selected").val();
# Get selected text
$('#aioConceptName').find(":selected").val();
Another way to get value
$( "#myselect option:selected" ).val();
Subscribe to the Email Newsletter