I want to build a slider with two handles with the handle value displayed within the handles or above them. I have done so far.
$( "#slider" ).slider({
range: true,
min: 3600,
max: 86400,
values: [ 28800, 86400 ]
});
I want to build a slider with two handles with the handle value displayed within the handles or above them. I have done so far.
$( "#slider" ).slider({
range: true,
min: 3600,
max: 86400,
values: [ 28800, 86400 ]
});
See this Demo . IF you have any confusions, don't hesitate to ask me.
HTML
JavaScript
CSS