I have a on my checkout form, and somehow Chrome thinks that this field is a credit card expiration month.
I know this question has already been answered, but I'm going to put my two cents in anyway.
Another way to do this(as far as I know), is when making the <input>
fields in your HTML document, just don't add the type="ipsum dolor amet"
argument. Then Chrome, or any other browser, won't know what's what and will stay out of it.
Add autocomplete="nope"
, to your input tag if you don't want it to auto-populate with anything. The browser will try to process it and since nope
is not an acceptable option for it the browser will give up on processing it.
See - https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion#Disabling_autocompletion.