Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

what are the configuration requires for autocomplete work correctly.

  • 1 risposta
  • 1 ha questo problema
  • 21 visualizzazioni
  • Ultima risposta di d.dodiya

more options

Hello Team,

I am working on form submit feature in one of project, and for that I set autocomplete='on' at form level, but I am not able see the autocomplete feature when I try submit form second time, I want to see previous input value as a suggestion to user so if he/she wants to use the same session input values if they want to use it.

I set this below kind of code inside my one of form so that it will allow user to show previous input values as a suggestion, this code works correctly and show autocomplete suggestion to user in Chrome and Edge browser but when I try to run the web form in Firefox It is not showing me autocomplete suggestion which entered previously. so could you help me out and provide some suggestion what are the things I missed here?

<input id="name"

               class="cell"
               type="text"
               list="autocompleteOff"
               autocomplete="name"               
/>

I tried below things but no luck.

  1. https://support.mozilla.org/en-US/kb/control-whether-firefox-automatically-fills-forms
  2. https://support.mozilla.org/en-US/questions/1321000


Any suggestion or help would be helpful to fix this issue.

Thanks!

Hello Team, I am working on form submit feature in one of project, and for that I set autocomplete='on' at form level, but I am not able see the autocomplete feature when I try submit form second time, I want to see previous input value as a suggestion to user so if he/she wants to use the same session input values if they want to use it. I set this below kind of code inside my one of form so that it will allow user to show previous input values as a suggestion, this code works correctly and show autocomplete suggestion to user in Chrome and Edge browser but when I try to run the web form in Firefox It is not showing me autocomplete suggestion which entered previously. so could you help me out and provide some suggestion what are the things I missed here? <input id="name" class="cell" type="text" list="autocompleteOff" autocomplete="name" /> I tried below things but no luck. # https://support.mozilla.org/en-US/kb/control-whether-firefox-automatically-fills-forms # https://support.mozilla.org/en-US/questions/1321000 Any suggestion or help would be helpful to fix this issue. Thanks!

Tutte le risposte (1)

more options

I also tried with this but no luck. <input id="name" class="cell" type="text" autocomplete="name" />