get index of select element in jquery code example
Example 1: get index of option in select jquery
alert($("#dropDownMenuKategorie")[0].selectedIndex);
Example 2: get index of selector jquery
$("#wizard").delegate('li', 'click', function () {
console.log( $(this).index() );
});