Given the following dropdown:
<select id="my-dropdown" name="my-dropdown">
<option value="1">Peter</option>
<option value="2" selected>Pan</option>
</select>
I know I can get the value (2 here) of the current selection using this code:
find_field("#my-dropdown").value
But how can I get the name/ label (Pan here) of the current selection? The following code does not work:
find_field("#my-dropdown").label
Thanks :)