Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable predictive text on iPhone for a form field

Tags:

html

forms

iphone

Is there an attribute which I can specify for an <input> element which would turn off the predictive text functionality for this given field?

Something along the lines

<input type="text" predictive="disabled" />
like image 837
Art Avatar asked Jan 18 '11 09:01

Art


1 Answers

There are some options:

<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off">
like image 148
Ilya Sviridenko Avatar answered Sep 30 '22 17:09

Ilya Sviridenko