I'm trying to get decimals to work in a input field of type number. To implement this I'm trying to modify the step attribute.
<input name="aNumberInput" type="number" min="10000" max="400000" step=".001" id="with-step"/>
I've found the implementation in IE10 doesn't work, the validation is completely sporadic. For example, use the following jsFiddle and try inputting 11111.232, then try 11111.222. For some reason the .232 validates but the .222 does not.