I am using a JQuery rangeslider.
I want the minimum value to be 6, and the maximum to be 60 which I have set in the html code...
<input type="range" value="18" min="6" max="60" step="6" >
The step size should increase by 6 until it gets to 36. When the slider reaches 36 the step size increases by 12 (as it should do)... it should then snap to 48 and then 60 but instead it increases to 42, then 54 and 66!
So instead of going 6,12,18,24,30,36,48,60
it seems to go..
6,12,18,24,30,36,42,54,66
Does anyone know what I can do to ensure the step size increases where it is being told to and displays the correct amounts?
Check this Codepen which works in a similar way
Thanks