+ 1
How to delete history of a textbox in a self created webpage using html
I have created a search box using html and now i want to remove the search history which pops up when i click on the search bar
1 Answer
+ 8
One way to do it is by setting the autocomplete attribute to "off"
Example :
<input type="search" autocomplete="off">