Skip to main content

We have recently migrated one of our forms to a 2019 environment. Now, whenever I click in various fields, the address autofill from the managed addresses in the browser comes up. I'd like to turn this off completely, as we aren't even capturing personal information like this, so it's completely unnecessary. I don't want to have to do this at the browser level. I've had trouble finding a solution because autofill can mean different things in Nintex and I can't seem to find any results that pertain to my issue.  Screenshot below. Yellow highlighted field is my nintex form field. 

Hi @vanhornsby,


according to mdn you have to add autocomplete="off" for the browser to not show these suggestions. Using javascript you could add autocomplete off to all inputs on your page using this:


NWF$("input").attr("autocomplete","off")

 See: https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion 


Reply