how to grab the value of a select element in jquery code example
Example 1: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: how To fetch the index of dropdown using jquery
BY LOVE
$('#ddlPartnerType option:selected').index()