I am trying to submit the form but It won't. It is auto-fill the input area after submitting once. However, after auto-fill the input it does not enable the submit button.
As it works on the rest of the browsers.
I have tried to add autocomplete off attribute in form tag as well as input tag but no luck.
<form autocomplete="off" ....````
I am trying to submit the form but It won't. It is auto-fill the input area after submitting once. However, after auto-fill the input it does not enable the submit button.
As it works on the rest of the browsers.
I have tried to add autocomplete off attribute in form tag as well as input tag but no luck.
<form autocomplete="off" ....````
- Try to use the autocomplete attribute in input tags. It will help you. Thanks – Mohit Sidoliya Commented Nov 4, 2019 at 13:45
3 Answers
Reset to default 17This works, but not the way that you think it does.
Officially it should be: autocomplete="off"
.
However many browsers bizarrely ignore this. Therefore it's best to just put some random string on the autocomplete section like:
autocomplete="autocomplete_off_randString"
Note that make sure the autocomplete value for each input is different (use JavaScript). Hence the random string at the end. Or else you may get suggestions from fields with the same autocomplete value.
try to use autocomplete="new-password"
as describe here
in edge worked for me autocomplete="false" readonly onfocus="this.removeAttribute('readonly');" /
according to this https://stackoverflow.com/a/30344707/14913109