0

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:

https://i.stack.imgur.com/UxCGg.png

Machavity
  • 30,841
  • 27
  • 92
  • 100
Phil
  • 1
  • 3

1 Answers1

1

You can hide the inputs with CSS:

.ui-rangeslider input {
    display: none;
}
.ui-rangeslider-sliders{
    margin: 15px !important;
}

Here is a DEMO

ezanker
  • 24,628
  • 1
  • 20
  • 35