Ritesh Singh

Ritesh Singh

  • 700
  • 1.2k
  • 152.8k

How to stop auto-fill in all browsers for password?

Aug 3 2016 5:50 AM
How to stop auto-fill in all browsers for password?
 
I have tried several ways but didn't find the proper solutions:
 
I tried:
 
1>
$(document).ready(function () {     $('input').attr('autocomplete', 'false'); });
2>
<form autocomplete="off" ...></form>
3>
<input type="password" readonly onfocus="this.removeAttribute('readonly');"/>
 
Thanks in Advance 

Answers (5)