Jquery ui slider with values but only one handle it is possible ?
Hi,
I would have a slider with many values but with only one handle it is possible ?
In fact my slider will update a input type text with the correcty value
var slider = $('
').slider({ min: min, max: max, range:true, values: vals, slide: function(event, ui) { $("#sliderInput").val(ui.values[0]); } }); vals is the array with my values