Reputation: 1
I am using the jQuery Mobile range slider. I want to use it with time ranges.
Is it possible to hide the to value boxes which are located left and right of the slider?
See picture:
Upvotes: 0
Views: 100
Reputation: 24738
You can hide the inputs with CSS:
.ui-rangeslider input { display: none; } .ui-rangeslider-sliders{ margin: 15px !important; }
Here is a DEMO
Upvotes: 1