Home > other >  What is this history data, where is it saved, and how can I interact/delete it?
What is this history data, where is it saved, and how can I interact/delete it?

Time:04-23

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?

html text field with drop-down of five history submissions

CodePudding user response:

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>
  • Related