Tompina
Tompina

Reputation: 787

Slider - 3 handles

I got the current slider

<input id="slider_price" type="text" class="span2" value="" data-slider-min="1000" data-slider-max="80000" data-slider-step="5" data-slider-value="[60000, 80000]"/>

_

$('#slider_price').slider({
    tooltip: 'always'
});

enter image description here

This is working great as it is but now I want to extend it, I want to add a third slider, like this:

enter image description here

I have browsed through the whole manual and guides, but there are no examples how you can use 3 handles in a slider!

Help is greatly appreciated!
Tompa

Upvotes: 2

Views: 350

Answers (1)

ArtemKh
ArtemKh

Reputation: 1000

Try this, i think it helps you

$('#slider_price').slider({
    tooltip: 'always',
    values: [21690,47590,72475]
});

Upvotes: 2

Related Questions