jquery select element in with selected index code example
Example 1: how to get the selected index of dropdown in jquery
BY LOVE
$('#ddlPartnerType option:selected').index()
Example 2: get index of option in select jquery
alert($("#dropDownMenuKategorie")[0].selectedIndex);