6

Is it somehow possible to force iOS 8 to not display the QuickType predictions? With a data attribute, for instance? I already tried autocomplete="off", but without success.

In some cases, it simply doesn't make much sense to display those kind of suggestions, like for address input fields. The predictions then just waste screen space that could be used better otherwise.

AstroCB
  • 12,337
  • 20
  • 57
  • 73
m4r73n
  • 756
  • 13
  • 21

2 Answers2

12

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

and it works.

VKen
  • 4,964
  • 4
  • 31
  • 43
user3205193
  • 131
  • 2
0

No. This is on the iOS side: you can't control it via element properties.

Users can disable it themselves by

  1. Swiping down on the menu itself,
  2. Using the international keyboards button (globe icon), or
  3. Disabling it in 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 merely tells the keyboard whether to store previous inputs and recommend those to the user as they're typing.

AstroCB
  • 12,337
  • 20
  • 57
  • 73