How do I hide the slider value box. I just want the slider itself as the value is displayed elsewhere.
How do I hide the slider value box. I just want the slider itself as the value is displayed elsewhere.
Look at the generated source and find the node in the DOM that shows the value. Then use jQuery to select that element and hide it.
Hi there,
In my case, I don't wanna hide the value box but the slider when not in use.
I used the
Appery('mySlider').hide();
however, it hides only the value box
the bar and the button still appear.
any specific code ?
if you cld let me know how to .show() as well.
Thk you very much in advance,
Eric
Hi Eric -
Try this JavaScript code on your element:
precode
Apperyio('mobileslider_3').slider({
disabled: true
}); /code
/pre
where 'mobileslider_3' - is your slider element name.