How to select first empty value option in a select menu??
- by alex
Hi there,
The following always preselects the last option, but i like the first option to be preselected?
<select name="filter">
<option value="" selected>Make a choice</option>
<option value="1">1</option>
<option value="3">3</option>
<option value="7">7</option>
<option value="">all</option>
</select>
even with the first selected??
Can this be done??