Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

what are the configuration requires for autocomplete work correctly.

  • 1 답장
  • 1 이 문제를 만남
  • 21 보기
  • 최종 답변자: 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!

모든 댓글 (1)

more options

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