Disable autocompletion in text boxes
by Vijay[ Edit ] 2009-08-28 15:02:25
To disable or stop auto completion in HTML text boxes,
use AUTOCOMPLETE=OFF
<form name="zzz" AUTOCOMPLETE=OFF> // will disable auto complete for the whole form
<input type=text name="search" autocomplete=off> // will disable autocomplete for this text box