Prevent Form Field Autocomplete

Preventing autocompletion of form fields is incredibly important since we never know where our users are completing them from They could complete them from a super secure computer or an incredibly public computer Regardless of security level some field values should never be remembered like credit card number social security number etc Preventing autocompletion is as simple as adding one attribute to a FORM tag for individual form fields The HTML The autocomplete attribute is the key This attribute may be added FORM tags to prevent any autocompletion:
<form method=”post” autocomplete=”off”>
You may…..




View Post
0saves