J'essaie d'utiliser jQuery pour faire une demande ajax basée sur une option sélectionnée.
Existe-t-il un moyen simple de récupérer l’ option sélectionnée (par exemple "id2") à l’aide de jQuery?
<select id="my_select">
<option value="o1" id="id1">Option1</option>
<option value="o2" id="id2">Option2</option>
</select>
$("#my_select").change(function() {
//do something with the id of the selected option
});