I'm using the Filament Group's jQuery Select Slider to produce a form for selecting a range of specific values.
How can I get the values of the slider and update <input>
field?
$(function(){
$('select').selectToUISlider({
labels: 7
});
//fix color
fixToolTipColor();
});
I understand that I can get the values through the jQuery UI Slider through a change function. How would I do that?