1<form method="post" action="/post/" autocomplete="off">
2 <!-- The entire form has autocomplete disabled. -->
3</form>
4
5<!-- or you turn it off for just one input -->
6<input type="text" autocomplete="off">
1someForm.setAttribute( "autocomplete", "off" );
2someFormElm.setAttribute( "autocomplete", "off" );
3