php - How to block Chrome from auto-filling text boxes? -


i'm testing website on google chrome , saw browser auto-fills username , password text boxes, if never said that. don't want behavior. there way stop using php, css or javascript?

you can specify autocomplete="off" on fields don't want auto-filled, honoring browser , isn't supported everywhere:

<input type="text" name="something" autocomplete="off" /> 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -