Changing a Select dropdown with a jquery ui slider
Posted
by Chris J. Lee
on Stack Overflow
See other posts from Stack Overflow
or by Chris J. Lee
Published on 2010-05-29T06:51:10Z
Indexed on
2010/05/29
7:32 UTC
Read the original article
Hit count: 169
Trying to set a select dropdown with a slider. You move the jquery ui slider and then it will change the selection of the other two dropdowns.
is there a current method in jquery that would set these options?
Current dropdown:
<select id="alert-options-frequency-opts">
<option value=""></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
© Stack Overflow or respective owner