In my HTML FORMs, when I focus certain text fields they list down history of values entered previously. Is it possible to avoid this auto-drop-down? I am not looking for some browser settings tips for my computer, instead, I want these settings for all of the users of my website filling a form.
Will it also be possible to apply these settings for some selected text fields only? as historical values for some text fields may be helpful for a particular user using his/her machine.
May be this could be achieved using Javascript, but no clue where to start from.
Thanks for your help.
PS: I am using PHP and Javascript (JQuery).
Add the attribute
autocomplete="off"to each of your form elements.This is not part of the W3C HTML standard, but it does work in both Mozilla & IE browsers.