Disable autocompletion in text boxes - HTML Views : 607
Tagged in : HTML
Send mail vote down 1 vote down 2
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 .