Anu Raj
Anu Raj

Reputation: 1

How do you disable browser Autocomplete on web form field / input tag in Latest Browsers?

I have a page in my web app, that page need to save some configurations , include different usernames and passwords. But browsers autofill fills usernames and passwords of this pages with saved Login credentials. autocomplete="off" doesnt seems to work in latest browsers. Is there any other options?

Upvotes: 0

Views: 385

Answers (1)

Saeed
Saeed

Reputation: 51

Do you insert autocomplete in the starting form tag?

<form .... autocomplete="off">

It works correct in our web app.

Upvotes: 1

Related Questions