No decimal separator on Chrome Soft-Keyboard I would like to have an HTML 5 input element, for ...">

HTML 5 input type "number" in increments = "any" => No decimal separator on Chrome Soft-Keyboard

I would like to have an HTML 5 input element, for example:

<input type="number" step="any" value="3.5"/> 

This works fine on my iPhone Safari Browser, but not on Chrome for Android. It shows the right Soft-Keyboard, but not the decimal separator. So I'm not able to enter any decimal places.

Are there, for example, any JavaScript settings that make Chrome browser the right keyboard?

Because it seems like an error: can someone point me to Chrome for Android Issue Tracker to open a case for this?

+6
source share
2 answers

I have the same problem and I followed this link: Google Chrome on Android (and only Android) Does not allow Decimal with type number and step = "any"

I have not tested iDevice yet, but I am having a problem with the Samsung Galaxy SIII.

+4
source

This is not a mistake, but according to the W3 specification, that other browsers do not follow. The fix should be β€œany,” but Chrome also did not implement this.

0
source

All Articles