autofill off in html code example
Example 1: how to make html input not autofill
<input type="text" autocomplete="off" />
Example 2: form input autocomplete off
<input autocomplete="off"></input>
Example 3: autocomplete off input
autocomplete="off"
Example 4: disable autocomplete javascript
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );