Form

The Autocomplete feature of a we browser can be removed by using  " autocomplete" attribute , It can be removed from whole form  or from all Input field or specific input field as per required or choice.. code is given below : 

Remove auto complete from whole from by using below code.



<form autocomplete="off">


Remove auto complete from all specific input type by using below code.



<input type="text" autocomplete="off">
<input type="email" autocomplete="off">
<input type="number" autocomplete="off">
<input type="password" autocomplete="off">