I've just been given a requirement to prevent browsers from saving data entered into specific form fields. It's been years since I've done web dev, and this is a relatively new capability. I was able to find the form field property autocomplete="off", but I can't seem to find any documentation indicating which browsers support it. Can anyone point me in the right direction of a chart of form attributes and browser compatibility?
|
|
I can only offer anecdotal evidence, but I've yet to come across a browser that fails to respect
I'm aware that Greasemonkey scripts, and presumably other user-scripts, can disable the There's a couple of articles I found that might be useful to you: |
|||||||
|
|
If you're able to use JavaScript and jQuery, you can place this on load of the html:
|
|||||
|
|
Warning: My answer below is not objective and sparsely constructive, I should drink less coffee, thanks for the note. It is technically not possible to prevent browsers from saving data. And it would be a security hazard even trying. I can’t count the number of people I know (me included) who have a "password.txt" on their desktop where all their passwords are written. It is either that, either using the same password for every websites (which is even worse in matter of security), or using the same password as the login name, or so. By trying and securing what can’t be "secured", you just make it worse. If your company asks you to do so, please, as an engineer, make them understanding their mistake, it will save your company some time and money. If they really need something more secure, maybe password protected account is not enough. Try introducing other security solutions like certificates, tokens… If your company doesn’t trust the user not clicking on "remember password" in an internet café, why would you give this user an access to his accounts through password credentials? There will always be mistakes (or inattentive people). There can’t be 0% risk. Please, do not spoil ergonomics in favour of an inefficient security. How many time did I spent typing and typing passwords (or worse mouse clicking on stupid screen pads, who thought about this awful idea ? I have a 100€ keyboard, what for?), there are some websites on which I click the "forgot password" every time I need to connect. |
|||||||||
|