275
Views
5
Comments
Autocomplete off mobile
Question

Hi all,



I am having a password input field, i am getting previous inputs as suggestions

So how to disable this for mobile.

I tried adding attribute autocomplete = "off"; this din't worked.


Thanks in advance :)

2026-02-26 06-29-24
Rahul
 
MVP

Hi Dhiraj,

Try This style once may be it works for you

<input type="text" name="username" id="username"
    class="form-control" placeholder="Enter your user name" 
    value="" 
    autocapitalize="off" 
    autocomplete="off"
    spellcheck="false" 
    autocorrect="off"   />

  <input id="real-password" type="password" autocomplete="new-password">


Regards

Rahul Sahu

2019-10-04 15-01-22
Dhiraj Manwani

Rahul Sahu wrote:

Hi Dhiraj,

Try This style once may be it works for you

<input type="text" name="username" id="username"
    class="form-control" placeholder="Enter your user name" 
    value="" 
    autocapitalize="off" 
    autocomplete="off"
    spellcheck="false" 
    autocorrect="off"   />

  <input id="real-password" type="password" autocomplete="new-password">


Regards

Rahul Sahu

Hi rahul,


I am not using HTML tag for input,

I used outsystems Input widget, is there any way to achieve this?


Thanks,

DM


2019-10-04 15-01-22
Dhiraj Manwani

Hi All,



Can anyone suggest something on this ??


Thanks DM

2019-11-06 17-40-51
Odairson Cardoso

Hi All,

When autocomplete="off" not work, please use autocomplete="new-password"

Regards.

UserImage.jpg
Sanjay Baghel

Hi Dhiraj

Have you got the solution for this, I am facing the same issue please suggest.


Thanks

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.