javascript - How to create slider with decimal values using html -
i want create slider showing decimal values 0.0 0.1 using html or html5.
it sounds want input field user can click arrows increment/decrement value in steps of 0.1. if that's case, want use html5 numeric input
element:
<input type="number" min="0" max="1" step="0.1" value="0.5" />
find out more here @ html5 goodies.
Comments
Post a Comment