|
|
Disable autocompletion in text boxes - HTML
|
Views : 650
|
|
Tagged in : HTML
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|