Answers for "autofill off in html"

7

input disable autocomplete

autocomplete="off"
Posted by: Guest on March-30-2020
1

form input autocomplete off

<input autocomplete="off"></input>
Posted by: Guest on August-04-2020
6

disable autocomplete javascript

someForm.setAttribute( "autocomplete", "off" ); 
someFormElm.setAttribute( "autocomplete", "off" );
Posted by: Guest on March-12-2020

Browse Popular Code Answers by Language