Disable QuickType iOS 8 in HTML input field

Can iOS 8 not display QuickType predictions? For example, with a data attribute? I already tried autocomplete="off" , but to no avail.

In some cases, it simply does not make sense to display sentences such as for address input fields. Then the predictions simply lose the screen space, which could be used better otherwise.

+5
source share
2 answers

i put autocapitalize="off" autocomplete="off" autocorrect="off"

and it works.

+6
source

Not. This is on the iOS side: you cannot control it using element properties.

User can disable it by himself.

  • Scrolling down the menu itself
  • Using the international keyboard button (globe icon) or
  • Disable it in the settings.

However, there is currently no way to disable it via HTML without changing the input to a type other than text . The autocomplete attribute simply tells the keyboard whether to store previous inputs and recommend them to the user as they are entered.

+1
source

Source: https://habr.com/ru/post/1202641/


All Articles