Assuming:
<select id="selector">
<option value="0" selected="selected">Both</option>
<option value="1">Red</option>
<option value="2">Blue</option>
<option value="3">Green</option>
</select>
<a id="prev">Prev</a>
<a id="next">Next</a>
Just wondering if someone has figured a simple jQuery function for
moving through the a select list (using the above type of controls).
The idea is that the Prev anchor would disappear if the first option
is selected, and that the Next ancor would disappear if/when the last
option is selected.
...Rene