I am trying to turn off the browser autoComplete feature for phonenumber fields on my form. There is no checkbox in the UI to do this. from the browser console I can execute this JS: document.getElementById("phoneNumber1--0").autocomplete="off"
and it works fine but trying to run that JS script from a query or in the modal show event yields this error: Cannot set properties of null (setting 'autocomplete')
from where can I call my JS snippet?