Disable autocompletion in text boxes - HTML Views : 650
Tagged in : HTML
2 2
Send mail
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
By Vijay, On - 2009-08-28



    Login to add Comments .