how to get value from select box in jquery code example
Example 1: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery selected option text
$("#mySelect option:selected").html();
Example 3: get selected option value
var conceptName = $('#aioConceptName').find(":selected").val();