How do you increment a currency fractional part?
For instance, let's say you have 14.0009 and you want to increment it to 14.0010 when press the up arrow key
How do you increment a currency fractional part?
For instance, let's say you have 14.0009 and you want to increment it to 14.0010 when press the up arrow key
If you are using a HTML5 Input number field then set the step
attribute to step="0.0001"
.
See more: https://www.w3schools.com/tags/att_input_step.asp
See more: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/step