You can do it at the input level in HTML by adding autocomplete="off"
to the input.
You could also do it via JS such as:
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );
You can do it at the input level in HTML by adding autocomplete="off"
to the input.
You could also do it via JS such as:
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );