I have a profile form in my site in which the password field is auto filled even after i gave auto complete="off" to the text box and also to the form. After that also i got the password field auto complete.
<input name="password" id="password" type="password" autocomplete="off" />
Please try this instead of using any dummy hidden variables within the form.
<input name="password" id="password" type="password" autocomplete="false" readonly onfocus="this.removeAttribute('readonly');" />
At last i found a solution for this question. We can make the field as read only and editable on getting focus.
<input name="password" id="password" type="password" readonly onfocus="this.removeAttribute('readonly');" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With