Berti
Berti

Reputation: 57

Input Range Slider JQueryMobile Remove valuefield from view

Is there a way to remove the valuefield in the range slider jquerymobile plugin?

http://jquerymobile.com/demos/1.0b3/docs/forms/forms-slider.html

Upvotes: 1

Views: 2695

Answers (1)

Joseph Marikle
Joseph Marikle

Reputation: 78550

I misunderstood completely... Here is the answer to your question which makes so much more sense now that I've reread it. :P

Just apply the following css rule:

input.ui-slider-input {
    display:none !important;
}

Upvotes: 1

Related Questions