Obtenir l'index de l'option sélectionnée javascript

$("#sel").attr("selectedIndex")
// or
$("#sel")[0].selectedIndex
//or
$(this).prop('selectedIndex')
Andrew Lautenbach