you should look at the demos
http://jqueryui.com/demos/slider/
the ".slider()" call is supposed to be on a <div> and in turn the
events of that slider <div> set the value on your form field
and even if
<select name="sizer" id="speed">
is correct, then the jQuery selector of
$("#slider")
won't get that object
On Jan 21, 4:48 pm, Mircea <[email protected]> wrote:
> Oh, sorry is <select name="sizer" id="speed">
>
> it is
>
> <fieldset>
> <select name="sizer" id="speed">
> <option value="10">10</option>
> <option value="15">15</option>
> <option value="21"
> selected="selected">21</option>
> <option value="30">30</option>
> <option value="40">40</option>
> </select>
> </fieldset>
>
> It was a typo, the code does not work with "sizer" or the "speed" typo.