If I have this select:
<select id="days">
<option value="0">Today</option>
<option value="1">Yesterday</option>
<option value="7">Last week</option>
</select>
and someone selects the 3rd option 'last week', I can get the value of last week (which is 7), using $("#days").val()
, but how can I get the value of the text i.e 'Last week'?