jquery select option get index code example
Example 1: how to get the selected index of dropdown in jquery
BY LOVE
$('#ddlPartnerType option:selected').index()
Example 2: select option value jquery
$("select.country").change(function(){
var selectedCountry = $(this).children("option:selected").val();
alert("You have selected the country - " + selectedCountry);
});