Table of contents

  1. Introduction
  2. How-to-clear-autofill-entries-in-browser-with-HTML
  3. Summary

    Introduction

When develop a web application especially building form and fill the user input it is quite bothersome when auto-fill entries keep shows up in the form.

You can do this manually simply by go to privacy setting in your browser and clear browsing data history. However this is not an ideal option for coders or web developer as it has to be done manually.

how-to-clear-autofill-entries-browser-html.gif

How-to-clear-autofill-entries-in-browser-with-HTML

This is how you can clear or delete autofill entries in browser with HTML.

Open your code editor or IDE and head to the html form. Look the form tag and inside the form tag beside action and method or other things you simply add autocomplete='off'. This autofill or autocomplete form is turn on by default. You need to switch it off to disable autofill entries.

<form action="" method="POST" autocomplete="off">

Above is form tag where you can type the autocomplete setting to off instead on.

Summary

That is how you should fix the autofill entries by turn off the autocomplete feature throught the html script in form.