When I make a text field like this in html, a history drop-down came up, with the first five answers I gave. What is this data, where is it stored, and how can I delete it?
Asked
Active
Viewed 73 times
0
-
browser autofill – Sean Apr 22 '22 at 20:18
-
1[See this post.](https://stackoverflow.com/questions/15738259/disabling-chrome-autofill) – Regan Karlewicz Apr 22 '22 at 20:20
1 Answers
0
the data save in local chorme, your can clear history to delete it or use simple solution here
<form autocomplete="off">
<input type="text" id="text1">
</form>

NTAK666
- 44
- 1
- 2
-
1This won't necessarily work in Chrome. [See this post.](https://stackoverflow.com/questions/15738259/disabling-chrome-autofill) – Regan Karlewicz Apr 22 '22 at 20:19
-
It seemed to have worked for me, but I'll make sure not to use it in the future, I'm just testing a little thing right now. – The Code Challenger Apr 22 '22 at 21:37