Skip to content Skip to sidebar Skip to footer

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

Solution 1:

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;
}

Post a Comment for "Input Range Slider JQueryMobile Remove Valuefield From View"