I'm using a jQuery-ui slider and some buttons for a quick selection of a little set of values.
When the user clicks one of these buttons, the slider is set to the corresponding value through the .slider
method:
$("#mySlider").slider("value", myValue);
This works fine, but I'd like to see the sliding animation. I tried with
$("#mySlider").slider({value:myValue, animate:true})
but it doesn't work as expected, since the animation is only enabled when, later, the user clicks on the slider bar.
Should I write a function using setTimeout
to achieve what I want or is there a higher-level way to do this with jQuery?
Here is a jsfiddle illustrating a solution: http://jsfiddle.net/exXLV/8/
The Trick seems to be to create a slider and set it's
animate
option totrue
,slow
,etc. and after that you should set the value of the slider via$("#slider").slider('value', 150);
Notice the difference between using the
.slider('value', 150)
syntax ("the value" function) and using the.slider({value:myValue, animate:true})
syntax ("the option" function).HTML:
JS:
Use animate along with value method
Something like this should do
DEMO
Hope this helps