Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Webview (Phonegap): Disable Autocorrect, Autocapitalize and autocomplete doesn't work

i have a problem with my loginpage which is loaded in a Webview on Android (Phonegap). i used the attributes autocorrect="off" autocomplete="off" autocapitalize="off" for my input fields and form tag but it doesn't work. the device shows simmilar words and the content goes up and down when i type a letter or number.

have anybody an idea how i can fix this problem?

cheers

like image 953
nonnnnn Avatar asked Oct 21 '11 12:10

nonnnnn


1 Answers

i have the same problem and after googling for hours , finally i got the solution

used the following attributes

autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"

I tested it on android 4.2 and its working

Turn off predictive text for password field on websites

like image 105
chandan Avatar answered Oct 15 '22 10:10

chandan