how to get a selected value from dropdown in jquery code example
Example 1: get value of selected checkbox jquery
$('#checkbox_id:checked').val();
//if checkbox is selected than gets its value
Example 2: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();