Page 1 of 1

Hiding the slider value box

Posted: Tue Nov 20, 2012 2:45 am
by David J. Wilson

How do I hide the slider value box. I just want the slider itself as the value is displayed elsewhere.


Hiding the slider value box

Posted: Tue Nov 20, 2012 4:01 am
by maxkatz

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.


Hiding the slider value box

Posted: Sat Jan 03, 2015 1:04 am
by EJLD

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


Hiding the slider value box

Posted: Sat Jan 03, 2015 3:16 pm
by Illya Stepanov

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.