I've got several select elements on a page e.g.
<select class="dd" id="dropdown1">
<option value="123">Option A</option>
<option value="234">Option B</option>
</select>
<select class="dd" id="dropdown2">
<option value="456">Option C</option>
</select>
etc etc
I would like to use jquery's $(this) to identify which of the several drop-downs have been selected and return their textual value.
I can use something like:
$("#dropdown1 :selected").text()
To return a specified entry but when I try to add $(this) into the mix it doesn't work. Where am I going wrong?