0

There are several threads about this. However, it seems that many workarounds no longer work with the latest versions of Chrome (e.g. 41.0... at the time of this thread), and I couldn't find any up to date solution.

More, the pattern I'm struggling with make use of the data-relattribute:

<input data-rel='city' type='text' autocomplete='off' autocorrect='off' spellcheck='false'/>

What would be your best ideas to get rid of this autofill?

Yako
  • 3,117
  • 7
  • 34
  • 63

1 Answers1

2

Just use autocomplete.

<form name="form1" id="form1" method="post" autocomplete="off">
    <input data-rel='city' type='text' />
</form>
Tony Freed
  • 61
  • 1
  • 3