I have use Bootstrap range slider i have 2 questions where i am totally stuck.
my question is how can i select reverse range like i have a slider with values 1 to 10 then i have to select 9 to 3 how can i do that?
Here, i have a slider with month range i want to select like oct - feb how can i do that???
And the another question is how can i add labels of my two handles?
Here is my html code,
<input id="ex1" type="hidden" data-clear-delay="true" data-provide="slider" data-slider-selection="none" data-slider-value="[0,100]" data-slider-ticks="[1,2,3,4,5,6,7,8,9,10,11,12]" data-slider-ticks-labels='["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]' data-slider-ticks-positions="[0, 9.09, 18.18, 27.27, 36.36, 45.45, 54.54, 63.63, 72.72, 81.81, 90.90, 100]" data-val="true" name="prefered_travel_period" value="" />
and the javascript is,
jQuery(function($) {
$('#ex1').slider({
formatter: function(value) {
return ;
},
id: "slider12c",
labelledby:["min","max"]
});
});
Please help me out of this, thank you in advance.

You have:
data-slider-ticksanddata-slider-ticks-labelsIf you want to only display Jan - Jun. You'd have to change it to this:
data-slider-ticks="[1,2,3,4,5,6]"data-slider-ticks-labels='["Jan","Feb","Mar","Apr","May","Jun"]'