We've an form in a mobile app which collects a user details, and we want to disable the auto complete functionality in IOS app, the issue is not seen Android app.
We need a fix for the IOS app.
I tried giving the autocomplete as "off" in the attribute section of the input fields. But didn't work.
Hi @Kush
You can try:
autocorrect = "off"
RegardsKrishnanand Pathak
Hello @Krishnanand Pathak
I implemented your fix in the input field's attribute field.But the issue still persists.
Try to use both attributes togetherautocomplete="off" autocorrect="off"
Hello Krishna,It tried, didn't work.
Hi Kush,I have had a similar issue and found that Safari tends to ignore the autocomplete property and looks for certain keywords in the id of the input element like "name" or "e-mail". So, I would suggest changing the id property of the input to something that won't trigger the autocomplete. Adding the word "search" to the label or input name can also fix it.
Hello @Aalhad Rangnekar
Can you please elaborate more on the point?Like what exactly to be done.