Disable HTML spelling for mobile

Is there a way to disable spelling help in HTML input fields in BlackBerry 6 / Iphone / android?
I tried setting autocomplete = "off" autocapitalize = "false" autocorrect = "false" spellcheck = "false"
"but, unfortunately, this does not disable autocomplete.

I try to do this because I want to use custom autoplay, but BlackBerry autoplay continues to interfere.

thanks
Kevin
Any Ideas would be great

+4
source share
3 answers

Do not use "false", use "off":

<input type="text" id="test" name="keyword" autocorrect="off" autocapitalize="off" autocomplete="off" /> 
+8
source

I just did it and tested on the iPhone, and they all all seem to use "off", except that the spellcheck should be "false."

0
source

For a blackberry, instead of using the input type = "text", you can use the input type = "email". Auto-fix is ​​turned off by default for email in blackberry. This is especially useful when creating an application using sencha.

-1
source

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


All Articles