How to delete history of a textbox in a self created webpage using html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

24th Jan 2018, 9:32 AM
Pratham Attri
Pratham Attri - avatar
1 Answer
+ 8
One way to do it is by setting the autocomplete attribute to "off" Example : <input type="search" autocomplete="off">
24th Jan 2018, 9:46 AM
Dev
Dev - avatar