get data from dropdown jquery code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: how to get the value of dropdown in jquery
BY LOVE
$('#ddlName option:selected').val();
BY LOVE
$("#Id option:selected").text()
BY LOVE
$('#ddlName option:selected').val();