On my HTML page I have multiple text inputs. Every time I enter values in them, it shows me the previously entered values. Is it due to a browser property or HTML? How do I disable it?
Click the Display tab. Do one of the following: To enable AutoComplete for the text box, select the Enable AutoComplete check box. To disable AutoComplete for the text box, clear the Enable AutoComplete check box.
Add autocomplete="off" onto <form> element; Add hidden <input> with autocomplete="false" as a first children element of the form.
Always the better appraoch is to give form autocomplete="off"
<form autocomplete="off"> <input type="text" id="text1"> <input type="text" id="text2"> </form>
Then only newer versions of Eclipse support HTML5 tags such as autocomplete else it will show warning...
Just set the autocomplete
property of your textboxes to off. Like this...
<input type="email" name="email" autocomplete="off">
That solution helped me: if you are using google Chrome, try this: Put the mouse pointer on the entry that you want to delete, press Delete. If the entry is not removed, press Shift+Delete.
i think it is related to this question autocomplete
try to used javascript to add attribute autocomplete to your form
someForm.setAttribute( "autocomplete", "off" ); someFormElm.setAttribute( "autocomplete", "off" );
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With