Usually I use $(\"#id\").val() to return the value of the selected option, but this time it doesn\'t work. The selected tag has the id aioConceptName
$(\"#id\").val()
aioConceptName
Here is the simple solution for this issue.
$("select#aioConceptName").change(function () { var selectedaioConceptName = $('#aioConceptName').find(":selected").val();; console.log(selectedaioConceptName); });