Luh Hooo Zer,
     Have you thought about making all of the sliders a 1:100 range
and treating their current step as a percentage of your minimum and
maximum values? That way everything will "slide" through each step the
same, but you will be able to vary your ranges separately without
effecting the general presentation. E.g. instead of...

var value1 = $("#slider1").slider("option", "value");

... try something akin to...

var max1 = 30;
var value1 = (($("#slider1").slider("option", "value") / max1) *
100));

I hope that helps.

On Nov 2, 2:24 pm, Luh Hooo Zer <anthonynori...@gmail.com> wrote:
> I have 3 sliders on one page.
>
> the value combination of slider1 and slider2 dictates the position of
> slider3 handle.
>
> but its not smooth... for instance, slider 1 and slider2 have 30
> steps, so is pretty smooth to slide, but slider 3 i can only site to
> position at values 10, 20, 30.... it doesnt slide like slider1 and
> slider2 do....
>
> is there a way to say, as the sliders are sliding, to move slider3
> just as smooth ast the other two?

Reply via email to