jquery ui-autocomplete and google chrome autocomplete jquery ui-autocomplete and google chrome autocomplete google-chrome google-chrome

jquery ui-autocomplete and google chrome autocomplete


Is this what you need?
https://stackoverflow.com/a/22694173/1479535

You can try adding

<input style="display:none"><input type="password" style="display:none">

at the start of your <form>


Just for anyone that might be looking for this solution,you can add a autocomplete="off" in the open form tag

<form ... autocomplete="off" >


<input autocomplete="off" />

...works until:

Chrome does not respect autocomplete="off"

if you are hitting that use:

<input autocomplete="anything_but_off"/>