I'm trying to delete auto fill data into form by browser but unable to do this I have spent many days for this task please find attached for reference. attached reference file
Asked
Active
Viewed 1,635 times
1
-
1add `autocomplete="off"` on your `input` elements and also on `form`.. – Guruprasad J Rao Jun 21 '17 at 07:14
-
I did this but not working – Vishal Yadav Jun 21 '17 at 07:17
-
Did you check for any autofilling extensions in the browser? – Guruprasad J Rao Jun 21 '17 at 07:20
-
Yes I have checked there are no extension – Vishal Yadav Jun 21 '17 at 07:23
-
Possible duplicate of [How to clear autocomplete selected values?](https://stackoverflow.com/questions/8867604/how-to-clear-autocomplete-selected-values) – Syfer Jun 21 '17 at 07:23
-
Still same problem – Vishal Yadav Jun 21 '17 at 07:29
1 Answers
0
First name:<input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
E-mail: <input type="email" name="email" autocomplete="off"><br>
<input type="submit">

Hema Nandagopal
- 668
- 12
- 35
-
Trying giving autocomplete off to the form attribute.Are you trying to avoid auto fill for username password combinations? – Hema Nandagopal Jun 21 '17 at 07:19
-
-
Please refer, https://stackoverflow.com/questions/17719174/autocomplete-off-is-not-working-when-the-input-type-is-password-and-make-the – Hema Nandagopal Jun 21 '17 at 07:22