java - How to disable auto complete on a Samsung smartphone (Android) in a Cordova Project? -


i can't figure out how disable auto complete on android samsung device in cordova project. when user tries type in email address, changes user typed in. dot replaced 2 dots, not acceptable user.

i tried add attributes html form, didn't work.

<input type="email" name="email" autocomplete="off"> 

i tried override webview in android project (java code), didn't work either.

webview.getsettings().setsaveformdata(false); webview.getsettings().setsavepassword(false); webview.clearformdata(); 

try this: <input autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />

(credits : https://davidwalsh.name/disable-autocorrect )


Comments

Popular posts from this blog

php - How to add and update images or image url in Volusion using Volusion API -

javascript - jQuery UI Splitter/Resizable for unlimited amount of columns -

javascript - IE9 error '$'is not defined -