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">
1<form autocomplete="off" method="post" action="">
2 <input autocomplete="false" name="hidden" type="text" style="display:none;">
3 ...
1someForm.setAttribute( "autocomplete", "off" );
2someFormElm.setAttribute( "autocomplete", "off" );
3