Is it possible to have a slider with a single handle, that controls multiple scales at the same time? I'd like to achieve something like this:
$( "#slider" ).slider({
scale1: {min:0,max:1,step:0.01},
scale2: {min:0.3,max:0.8,step:0.01},
scale3: {min:255,max:0,step:1}
});
Or perhaps a single range slider, and control the other scales within the slide callback?
$( "#slider" ).slider({
min:1,
max:100,
step:1,
value:100,
slide: function( event, ui ) {
// based on the slider position calculate the appropriate value on another scale.
// eg 0.3-0.8
}
});
Any ideas how to do this?