off auto complate form code example
Example 1: form input autocomplete off
<input autocomplete="off"></input>
Example 2: disable autocomplete javascript
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );