html - "AutoComplete=Off" not working on Google Chrome Browser -
this question has answer here:
- chrome browser ignoring autocomplete=off 35 answers
i know there 1 similar question on stackoverflow, none of solution there worked me.
<form autocomplete="off" id="search_form" method="post" action=""> <input autocomplete="off" type="text" /> </form>
as can see, put autocomplete=off
on both form , input field, google chrome still displays autocompletion list. doesn't happen in other browsers firefox , safari.
any other solution other putting autocomplete=off
on form tag??
it may bug on google chrome, can't cheat create hidden input over. auto complete feature first input text fill data.
<form autocomplete="off" id="search_form" method="post" action=""> <input type="text" style="display:none" /> <input autocomplete="off" type="text" /> </form>