Phil
Phil

Reputation: 1

jQuery mobile Rangeslider - don't show numbers

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.sstatic.net/UxCGg.png

Upvotes: 0

Views: 100

Answers (1)

ezanker
ezanker

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

Related Questions