Page 1 of 1

increment slider in values of 10

Posted: Tue Dec 03, 2013 2:38 pm
by Jason Baird

I wonder if there is a way to have the slider increment in values of 10 when I slide it (or another number or course)


increment slider in values of 10

Posted: Tue Dec 03, 2013 2:52 pm
by Maryna Brodina

Hello! Through More properties for Slider specify step property with necessary value.


increment slider in values of 10

Posted: Tue Dec 03, 2013 3:15 pm
by Jason Baird

Have I mentioned how much I love the support here? :) Thanks Maryna! Is there a manual that shows all the properties I can set on things? On an other note, if I wanted to set that using a localStorage variable? Can I?


increment slider in values of 10

Posted: Tue Dec 03, 2013 6:20 pm
by Kateryna Grynko

Hi Jason,

Sure you can:
prevar val = localStorage.getItem("val");
Appery("mobileslider").attr("step", val);/preWhere 'mobileslider' is a slider name,
'val' is a localStorage variable name.