Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Since Chrome recently upgraded, I've started to see the message "This web page has disabled automatic filling for this form." all over my website when form controls are clicked (OK, accidently double clicked) where autocomplete="off" (we're talking about chat rooms etc where the browser really doesn't need to remember previous messages sent).

It's pretty ugly, does anybody know how to disable this? I can't find much information on the web, other than things dating back to 2010 just saying that this is a feature. The thing is, it's only just started happening for me on the latest version, same for another computer running Chrome.

Any ideas?

Cheers

share|improve this question
just noticed this issue today as well... – jordanstephens Nov 6 '11 at 18:52

1 Answer

up vote 25 down vote accepted

Just stumbled upon the same problem and found a simple fix.

You have to add the autocomplete attribute directly to the input field NOT to the whole form.

This code works:

<form method="get" action="index.php">
    <input type="text" name="q" autocomplete="off">

And this won't

<form method="get" action="index.php" autocomplete="off">
    <input type="text" name="q">
share|improve this answer
@AlexB: Perfect solution :) – Mujahid Aug 2 '12 at 16:55
2  
<form method="get" action="index.php" autocomplete="off"> <input type="text" name="q" autocomplete="off"> does NOT work either, so make sure you don't leave autocomplete at the form tag after adding to the inputs. – Ando Nov 9 '12 at 6:10
Thanks @AlexB, worked perfect :) – mcpDESIGNS Apr 11 at 15:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.