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
Post a Comment