How do we get rid of these spambots on our site?
Every site falls victim to spambots at some point. How you handle it can effect your customers,
One suggestion to really force the no-autocompletion :
change autocomplete="off"
by autocomplete="nope"
OR autocomplete="false"
Since the given value is not a valid one (values for autocomplete
are only on
or off
), the browser will stop trying to fill the field.
For more details, How to Turn Off Form Autocompletion.
Hope this helps.
SYA :)