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//To disable suggestions
2<input autocomplete="off" />
3
4//To enable suggestion
5<input autocomplete="on" />