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