Reputation: 806
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.
Upvotes: 7
Views: 4993
Reputation: 151
i put autocapitalize="off"
autocomplete="off"
autocorrect="off"
and it works.
Upvotes: 14
Reputation: 12367
No. This is on the iOS side: you can't control it via element properties.
Users can disable it themselves by
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.
Upvotes: 0