Home > Blockchain >  Chrome autocomplete? options
Chrome autocomplete? options

Time:08-13

For a few months now we've been seeing the following dropdown for most of our HTML input boxes. Our input boxes have generic names e.g. Field1, Field2 and Field1 on one form is not the same as Field1 on another form, so the options provided are usually senseless.

Example dropdown

Anybody know how to turn this functionality off?

I don't know what to call it. I've tried searching for autocomplete and autofill but not sure if either of those terms are what is happening.

CodePudding user response:

well in the past autocomplete="chrome-off" always did the job, but for other browsers sometimes it does not work, so first try these two solutions and if they don't work try autocomplete="chrome-off".

  <form autocomplete="off"> 
      <input type="text" id="YourId" autocomplete="none"/> 
    </form>

or

    <form autocomplete="false"> 
          <input type="text" id="YourId" autocomplete="none"/> 
        </form>

I hope it helps.

CodePudding user response:

It is autocomplete and I managed to turn it off with:

autocomplete="off"

think I'd been trying "none" before.

  • Related