It appears some of my website\'s users are experiencing issues when attempting to insert values into input fields of type number with the step attribute set.
I am usi
It looks like IE10+ need a MIN and MAX value in order to work properly. If you defines these values it will work just fine with the 10000 value:
Seems that step attributes for numer input just implemented as for Range Input which needs min, max and step values.
If really you are not able to define a min and max value, you must use Javascript to do that.